Skip to content

Instantly share code, notes, and snippets.

@sobstel
Created August 1, 2016 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sobstel/7294ba7546c9825a70a6ac9efe609530 to your computer and use it in GitHub Desktop.
Save sobstel/7294ba7546c9825a70a6ac9efe609530 to your computer and use it in GitHub Desktop.
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