From 91a8f919de189554baf753f0ca1182f34da03665 Mon Sep 17 00:00:00 2001 From: Pierre Jaury Date: Tue, 12 Jun 2018 21:48:14 +0200 Subject: [PATCH] Fix a typo in the proxy configuration --- config/trustedproxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/trustedproxy.php b/config/trustedproxy.php index c1760266c..0a0776ada 100644 --- a/config/trustedproxy.php +++ b/config/trustedproxy.php @@ -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', '')), ];