diff options
Diffstat (limited to 'roles/nginx/templates/snippets')
-rw-r--r-- | roles/nginx/templates/snippets/common.conf.j2 | 10 | ||||
-rw-r--r-- | roles/nginx/templates/snippets/ssl-common.conf.j2 | 13 |
2 files changed, 23 insertions, 0 deletions
diff --git a/roles/nginx/templates/snippets/common.conf.j2 b/roles/nginx/templates/snippets/common.conf.j2 new file mode 100644 index 0000000..727da03 --- /dev/null +++ b/roles/nginx/templates/snippets/common.conf.j2 @@ -0,0 +1,10 @@ +## Ignore Apache's configuration files +location ~ /\.ht { + deny all; +} + +location ^~ /.well-known/ { + root {{ nginx_well_known_path }}; +} + +charset utf-8; diff --git a/roles/nginx/templates/snippets/ssl-common.conf.j2 b/roles/nginx/templates/snippets/ssl-common.conf.j2 new file mode 100644 index 0000000..a7806ac --- /dev/null +++ b/roles/nginx/templates/snippets/ssl-common.conf.j2 @@ -0,0 +1,13 @@ +ssl on; +ssl_dhparam /etc/ssl/dh4096.pem; + +ssl_prefer_server_ciphers on; +ssl_protocols TLSv1 TLSv1.1 TLSv1.2; +ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:!aNULL:!eNULL:!LOW:!EXPORT:!DES:!3DES:!RC4:!MD5:!EXP:!PSK:!SRP:!DSS:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!CAMELLIA'; + +ssl_session_cache shared:SSL:10m; +ssl_session_timeout 1h; + +{% if nginx_enable_hsts == True %} +add_header Strict-Transport-Security max-age=15768000; +{% endif %} |