Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #727 - HSTS: default preload to off #728

Merged
merged 1 commit into from
Jan 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
### HEAD
* [BREAKING] Fix #727 - HSTS: default preload to off ([#728](https://github.com/roots/trellis/pull/728))
* `Vagrantfile`: add automatic support for landrush ([#724](https://github.com/roots/trellis/pull/724))
* Suppress extra output in SSL certificates ([#723](https://github.com/roots/trellis/pull/723))
* Fix #718 - improve method of updating theme paths ([#720](https://github.com/roots/trellis/pull/720))
Expand Down
2 changes: 1 addition & 1 deletion roles/nginx/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ nginx_ssl_path: "{{ nginx_path }}/ssl"
# HSTS defaults
nginx_hsts_max_age: 31536000
nginx_hsts_include_subdomains: true
nginx_hsts_preload: true
nginx_hsts_preload: false

# Fastcgi cache params
nginx_cache_path: /var/cache/nginx
Expand Down