Skip to content

Instantly share code, notes, and snippets.

@sobstel
Last active August 29, 2015 14:05
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/2e9eb996c990f3d14adf to your computer and use it in GitHub Desktop.
Save sobstel/2e9eb996c990f3d14adf to your computer and use it in GitHub Desktop.
Nginx PHP common configuration
location / {
try_files $uri /app.php$is_args$args;
}
location ~ ^.+\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment