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