mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
289 B
8 lines
289 B
3 years ago
|
set $real_script_name $fastcgi_script_name;
|
||
|
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
|
||
|
set $real_script_name $1;
|
||
|
set $path_info $2;
|
||
|
}
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
|
||
|
fastcgi_param SCRIPT_NAME $real_script_name;
|
||
|
fastcgi_param PATH_INFO $path_info;
|