Fix bad config for PHP 8.1
This commit is contained in:
parent
a6df0afefd
commit
44bb8b4abf
1 changed files with 1 additions and 27 deletions
|
@ -24,31 +24,5 @@ return [
|
||||||
* subsequently passed through.
|
* subsequently passed through.
|
||||||
*/
|
*/
|
||||||
'proxies' => in_array(env('TRUSTED_PROXIES', []), ['*', '**']) ?
|
'proxies' => in_array(env('TRUSTED_PROXIES', []), ['*', '**']) ?
|
||||||
env('TRUSTED_PROXIES') : explode(',', env('TRUSTED_PROXIES', null)),
|
env('TRUSTED_PROXIES') : explode(',', env('TRUSTED_PROXIES') ?? ''),
|
||||||
|
|
||||||
/*
|
|
||||||
* Or, to trust all proxies that connect
|
|
||||||
* directly to your server, uncomment this:
|
|
||||||
*/
|
|
||||||
// 'proxies' => '*',
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Or, to trust ALL proxies, including those that
|
|
||||||
* are in a chain of forwarding, uncomment this:
|
|
||||||
*/
|
|
||||||
// 'proxies' => '**',
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Default Header Names
|
|
||||||
*
|
|
||||||
* Change these if the proxy does
|
|
||||||
* not send the default header names.
|
|
||||||
*
|
|
||||||
* Note that headers such as X-Forwarded-For
|
|
||||||
* are transformed to HTTP_X_FORWARDED_FOR format.
|
|
||||||
*
|
|
||||||
* The following are Symfony defaults, found in
|
|
||||||
* \Symfony\Component\HttpFoundation\Request::$trustedHeaders
|
|
||||||
*/
|
|
||||||
'headers' => \Illuminate\Http\Request::HEADER_X_FORWARDED_ALL,
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue