From 7a885f1dcd2f5191f19470866aca9a472770ebcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 6 Apr 2017 11:00:09 +0200 Subject: [PATCH] Removed the "trusted_proxies" entry from config.yml This commit fixes the following error: ``` [InvalidArgumentException] The "framework.trusted_proxies" configuration key has been removed in Symfony 3.3. Use the Request::setTrustedProxies() method in your front controller instead. ``` --- app/config/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/app/config/config.yml b/app/config/config.yml index 7ad4552b10..50db6b10dd 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -23,7 +23,6 @@ framework: engines: ['twig'] default_locale: '%locale%' trusted_hosts: ~ - trusted_proxies: ~ session: # http://symfony.com/doc/current/reference/configuration/framework.html#handler-id handler_id: session.handler.native_file