From: Christian Weiske Date: Wed, 9 Jul 2014 18:38:24 +0000 (+0200) Subject: (no commit message) X-Git-Url: https://git.cweiske.de/paste/122.git/commitdiff_plain/b7f1c59ef20783caf990e5f26e4d86223b1615e9 --- b7f1c59ef20783caf990e5f26e4d86223b1615e9 diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..3c39ebe --- /dev/null +++ b/nginx.conf @@ -0,0 +1,6 @@ +location ~ \.(php|phar)(/.*)?$ { + fastcgi_split_path_info ^(.+\.(?:php|phar))(/.+)$; + set $path_info $fastcgi_path_info; + fastcgi_param PATH_INFO $path_info; + ... +}