2015-07-15 20:18:51 +07:00
|
|
|
#
|
|
|
|
# {{ ansible_managed }}
|
|
|
|
#
|
|
|
|
|
|
|
|
ssl_ciphers "AES256+EECDH:AES256+EDH";
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_session_cache shared:SSL:10m;
|
|
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
|
|
|
|
add_header X-Frame-Options DENY;
|
|
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
ssl_stapling on;
|
|
|
|
ssl_stapling_verify on;
|
2016-01-12 00:20:42 +07:00
|
|
|
resolver {{ nginx_resolver_hosts | join(' ') }} valid={{ nginx_resolver_valid }};
|
|
|
|
resolver_timeout {{ nginx_resolver_timeout }};
|
2016-01-12 17:16:41 +07:00
|
|
|
ssl_dhparam {{ nginx_dh_path }};
|
2015-07-15 20:18:51 +07:00
|
|
|
|
|
|
|
# vim:filetype=nginx
|