# prevent HTTPoxy vulnerability fastcgi_param HTTP_PROXY ""; location / { # try to serve file directly, fallback to rewrite try_files $uri @rewriteapp; } location @rewriteapp { # rewrite all to index.php rewrite ^(.*)$ /index.php$1 last; }