diff --git a/CHANGELOG.md b/CHANGELOG.md index 42e9505d0..a1791cf9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * Fix renaming the folder name if the page, in the default language, had a custom slug set in its header * Fixed issue with `Content-Encoding: none`. It should really be `Content-Encoding: identity` instead * Fixed broken `hash` method on page modifications detection + * Fixed all `$_GET` parameters missing in Nginx (please update your nginx.conf) [#1245](https://github.com/getgrav/grav/issues/1245) # v1.1.12 ## 12/26/2016 diff --git a/webserver-configs/nginx.conf b/webserver-configs/nginx.conf index 640964a6d..4c74a70db 100644 --- a/webserver-configs/nginx.conf +++ b/webserver-configs/nginx.conf @@ -12,7 +12,7 @@ server { # `location /subfolder {` # and the rewrite to use `/subfolder/index.php` location / { - try_files $uri $uri/ /index.php?_url=$uri; + try_files $uri $uri/ /index.php?_url=$uri&$query_string; } ## End - Index