Moin,
heute ist uns (also in der Firma) etwas ganz komisches passiert. Eine Kollegin testet eine Shopware-Testseite (SW 5.2.22) mit ihrem Handy. Das Handy benutzt wohl einen Google-Proxy (wie das zustande kommt weiß ich nicht). So weit so gut, beim Versuch auf den Test-Shop zu kommen, kommt diese Fehlermeldung:
[client 66.249.93.129:49070]
AH01071: Got error 'PHP message: PHP Fatal error:
Uncaught Symfony\\Component\\HttpFoundation\\Exception\\ConflictingHeadersException:
The request has both a trusted Forwarded header and a trusted Client IP header, conflicting with each other with regards to the originating IP addresses of the request.
This is the result of a misconfiguration. You should either configure your proxy only to send one of these headers, or configure Symfony to distrust one of them.
In die config.php habe ich dann diese eingetragen:
'trustedproxies' => [
'66.249.93.129',
'66.249.93.131',
'66.249.93.133',
],
Nun geht das, aber das kann irgendwie nicht die Lösung sein das ich nun alle IPs hier eintragen muss.
Warum macht Shopware das auf einmal?