Skip to content

Commit

Permalink
Fixed all $_GET parameters missing in Nginx (please update your ngi…
Browse files Browse the repository at this point in the history
…nx.conf) [#1245](#1245)
  • Loading branch information
mahagr committed Jan 13, 2017
1 parent c718b8f commit 9b5ef4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion webserver-configs/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

2 comments on commit 9b5ef4c

@JoelVenable
Copy link

@JoelVenable JoelVenable commented on 9b5ef4c Aug 16, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I'm getting the same issue that was reported under #1245, I noticed this commit is not in the latest master branch for nginx.conf. Should I still use this changed version?

Edit: whoops, it is. Ok then, still having the problem despite having the correct nginx.conf

@mahagr
Copy link
Member Author

@mahagr mahagr commented on 9b5ef4c Aug 16, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Create a new issue if you cannot solve it. Or just visit Grav chat.

Please sign in to comment.