Fix missing PATH_INFO (#1130)

This commit is contained in:
Xavier Guimard 2017-01-09 19:32:19 +00:00
parent 320f51ecc5
commit f6d85f507b

View File

@ -18,6 +18,7 @@ server {
}
fastcgi_param SCRIPT_NAME $sn;
fastcgi_split_path_info ^(.*\.psgi)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
index index.psgi;