mirror of
https://github.com/cytopia/devilbox.git
synced 2025-05-24 19:24:26 +00:00
Merge pull request #80 from ilsenem/feature-nginx-query-string
Fix query string truncation in nginx configuration
This commit is contained in:
commit
0cb044e39d
@ -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