Fix a typo in the proxy configuration

This commit is contained in:
Pierre Jaury 2018-06-12 21:48:14 +02:00
parent b412616c28
commit 91a8f919de
1 changed files with 1 additions and 1 deletions

View File

@ -23,5 +23,5 @@ return [
* how many proxies that client's request has
* subsequently passed through.
*/
'proxies' => explode(env('TRUST_PROXIES', ''), ','),
'proxies' => explode(',', env('TRUST_PROXIES', '')),
];