mirror of
https://github.com/cytopia/devilbox.git
synced 2025-05-23 10:44:13 +00:00
Fix query string truncation in nginx configuration
This commit is contained in:
parent
b5256e2a2b
commit
22ec70cd72
@ -28,7 +28,7 @@ server {
|
|||||||
|
|
||||||
# Front-controller pattern as recommended by the nginx docs
|
# Front-controller pattern as recommended by the nginx docs
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php;
|
try_files $uri $uri/ /index.php$is_args$args;
|
||||||
}
|
}
|
||||||
|
|
||||||
# PHP FPM
|
# PHP FPM
|
||||||
|
@ -28,7 +28,7 @@ server {
|
|||||||
|
|
||||||
# Front-controller pattern as recommended by the nginx docs
|
# Front-controller pattern as recommended by the nginx docs
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.php;
|
try_files $uri $uri/ /index.php$is_args$args;
|
||||||
}
|
}
|
||||||
|
|
||||||
# PHP FPM
|
# PHP FPM
|
||||||
|
Loading…
x
Reference in New Issue
Block a user