diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 5469004d..af816c3f 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -130,6 +130,9 @@ server { fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT $realpath_root; + # Mitigate https://httpoxy.org/ vulnerabilities + fastcgi_param HTTP_PROXY ""; + # If Xdebug session is requested, pass it to the Xdebug enabled container if ($http_cookie ~* "XDEBUG_SESSION") { fastcgi_pass php-pimcore10-debug; @@ -164,4 +167,4 @@ server { access_log off; stub_status; } -} \ No newline at end of file +}