1
0
Fork 0

Merge pull request #1942 from pixelfed/staging

Fix TRUST_PROXIES configuration
This commit is contained in:
daniel 2020-01-16 22:38:38 -07:00 committed by GitHub
commit 3a12a32378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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', ''),
];