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.
11 lines
350 B
11 lines
350 B
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;
|
|
|
|
#修复http3不传HOST问题
|
|
fastcgi_param HTTP_HOST $host; |