Skip to content

Instantly share code, notes, and snippets.

@sobstel
Created August 1, 2016 08:18
Embed
What would you like to do?
php server nginx config
location ~ ^.+\.php(/|$) {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param HTTPS $https;
# Security: mitigating HTTPoxy vulnerability
fastcgi_param HTTP_PROXY "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment