Skip to content

Instantly share code, notes, and snippets.

@smiler
Created October 29, 2014 07:47
Show Gist options
  • Save smiler/c7e11f611db088e2ab71 to your computer and use it in GitHub Desktop.
Save smiler/c7e11f611db088e2ab71 to your computer and use it in GitHub Desktop.
location ~ [^/invite]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_pass http://unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment