diff --git a/CHANGELOG.md b/CHANGELOG.md index 1304fcd21..bb1bf682c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Fixed - Fixed Story Compose bug affecting postgres instances ([#1918](https://github.com/pixelfed/pixelfed/pull/1918)) - Fixed header background bug on MomentUI profiles ([#1933](https://github.com/pixelfed/pixelfed/pull/1933)) +- Fixed TRUST_PROXIES configuration ([#1941](https://github.com/pixelfed/pixelfed/pull/1941)) ### Changed diff --git a/config/trustedproxy.php b/config/trustedproxy.php index 0a0776ada..608e189d5 100644 --- a/config/trustedproxy.php +++ b/config/trustedproxy.php @@ -23,5 +23,5 @@ return [ * how many proxies that client's request has * subsequently passed through. */ - 'proxies' => explode(',', env('TRUST_PROXIES', '')), + 'proxies' => env('TRUST_PROXIES', ''), ];