1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00

Fix @schrej's proxy code.

This commit is contained in:
Dane Everitt 2017-02-12 16:23:31 -05:00
parent 2290118a0d
commit b5c39a1212
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -24,7 +24,7 @@ return [
* how many proxies that client's request has
* subsequently passed through.
*/
'proxies' => in_array(env('TRUSTED_PROXIES', ['*', '**'])) ?
'proxies' => in_array(env('TRUSTED_PROXIES', []), ['*', '**']) ?
env('TRUSTED_PROXIES') : explode(',', env('TRUSTED_PROXIES', null)),
/*