mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/14271] Improve try_files and use split path info
PHPBB3-14271
This commit is contained in:
parent
27e95864a8
commit
b27be0b857
1 changed files with 4 additions and 2 deletions
|
@ -83,11 +83,13 @@ http {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pass the php scripts to fastcgi server specified in upstream declaration.
|
# Pass the php scripts to fastcgi server specified in upstream declaration.
|
||||||
location ~ \.php$ {
|
location ~ \.php {
|
||||||
# Unmodified fastcgi_params from nginx distribution.
|
# Unmodified fastcgi_params from nginx distribution.
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
# Necessary for php.
|
# Necessary for php.
|
||||||
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
||||||
|
fastcgi_param PATHINFO $fastcgi_path_info;
|
||||||
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
||||||
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
||||||
fastcgi_pass php;
|
fastcgi_pass php;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue