From 2bfe742c4556b96467c25ea2bfbf2b73b3ab45c0 Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Tue, 15 Mar 2022 12:33:13 +0100 Subject: [PATCH] #48 - ecs fix --- app/Infrastructure/Http/Middleware/TrustProxies.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Infrastructure/Http/Middleware/TrustProxies.php b/app/Infrastructure/Http/Middleware/TrustProxies.php index 7e34570..0650c12 100644 --- a/app/Infrastructure/Http/Middleware/TrustProxies.php +++ b/app/Infrastructure/Http/Middleware/TrustProxies.php @@ -9,6 +9,6 @@ use Symfony\Component\HttpFoundation\Request; class TrustProxies extends Middleware { - protected $proxies = '*'; + protected $proxies = "*"; protected $headers = Request::HEADER_X_FORWARDED_AWS_ELB; }