mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Merge pull request #1942 from pixelfed/staging
Fix TRUST_PROXIES configuration
This commit is contained in:
commit
3a12a32378
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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', ''),
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue