Skip to content

Commit

Permalink
Merge branch 'release/1.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Aug 25, 2017
2 parents 63a0c95 + 057ac29 commit b031eaa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Nginx-Craft Changelog

## 1.0.8 - 2017.08.24
### Changed
* Fixed an issue where the removal of trailing slashes could cause directory URLs to fail with "too many redirects"

## 1.0.7 - 2017.08.05
### Added
* Added `Referrer-Policy "no-referrer-when-downgrade";` to `security.conf`
Expand Down
2 changes: 1 addition & 1 deletion forge-example/NginxConfiguration.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ server {

# Root directory location handler
location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri/index.html $uri $uri/ /index.php?$query_string;
}

# Localized sites, hat tip to Johannes -- https://gist.github.com/johanneslamers/f6d2bc0d7435dca130fc
Expand Down
2 changes: 1 addition & 1 deletion sites-available/somedomain.com.conf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ server {

# Root directory location handler
location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri/index.html $uri $uri/ /index.php?$query_string;
}

# Localized sites, hat tip to Johannes -- https://gist.github.com/johanneslamers/f6d2bc0d7435dca130fc
Expand Down

0 comments on commit b031eaa

Please sign in to comment.