Skip to content

Commit

Permalink
Fix for nginx and _url issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Oct 12, 2017
1 parent f37c08f commit 474ca51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
## mm/dd/2017

1. [](#bugfix)
* Regression: Ajax error in ngnix (#1244)
* Regression: Ajax error in Nginx [admin#1244](https://github.com/getgrav/grav-plugin-admin/issues/1244)
* Remove the `_url=$uri` portion of the the nginx `try_files` command [admin#1244](https://github.com/getgrav/grav-plugin-admin/issues/1244)

# v1.3.5
## 10/11/2017
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&$query_string;
try_files $uri $uri/ /index.php?$query_string;
}
## End - Index

Expand Down

0 comments on commit 474ca51

Please sign in to comment.