server { listen 80; server_name _; root /var/app/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include fastcgi_params; fastcgi_param HTTPS $http_x_forwarded_proto; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_pass 127.0.0.1:9000; } location ~ /\.ht { deny all; } error_log /var/log/nginx/error.log; access_log /var/log/nginx/access.log; }