Fix query string truncation in nginx configuration

This commit is contained in:
Ilya Nemytchenko 2017-06-16 13:16:38 +07:00
parent b5256e2a2b
commit 22ec70cd72
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ server {
# Front-controller pattern as recommended by the nginx docs
location / {
try_files $uri $uri/ /index.php;
try_files $uri $uri/ /index.php$is_args$args;
}
# PHP FPM

View File

@ -28,7 +28,7 @@ server {
# Front-controller pattern as recommended by the nginx docs
location / {
try_files $uri $uri/ /index.php;
try_files $uri $uri/ /index.php$is_args$args;
}
# PHP FPM