2021-01-05 17:12:00 -07:00
|
|
|
#
|
|
|
|
# NGINX SSL configuration (https://ssl-config.mozilla.org)
|
|
|
|
# 'Intermediate' profile for NGINX (TLS 1.2+)
|
|
|
|
# Generated: January 5, 2021
|
|
|
|
#
|
2019-10-16 23:44:47 -06:00
|
|
|
|
2021-01-08 22:02:22 -07:00
|
|
|
# SSL certificate and key location
|
|
|
|
ssl_certificate /certs/fullchain.pem;
|
|
|
|
ssl_certificate_key /certs/privkey.pem;
|
2019-10-16 23:44:47 -06:00
|
|
|
|
|
|
|
# SSL parameters
|
|
|
|
ssl_session_timeout 1d;
|
|
|
|
ssl_session_cache shared:SSL:10m;
|
|
|
|
ssl_session_tickets off;
|
|
|
|
|
|
|
|
# SSL protocols and ciphers
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
2021-01-05 17:12:00 -07:00
|
|
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
|
|
|
ssl_prefer_server_ciphers off;
|
2019-10-16 23:44:47 -06:00
|
|
|
|
|
|
|
# Diffie-Hellman parameter for DHE cipher suites, using 4096 bits
|
|
|
|
ssl_dhparam /certs/dhparam.pem;
|
|
|
|
|
|
|
|
# HSTS (6 months = 15768000 seconds)
|
2019-10-17 00:27:26 -06:00
|
|
|
#add_header Strict-Transport-Security "max-age=15768000" always;
|
2019-10-16 23:44:47 -06:00
|
|
|
|
|
|
|
# OCSP Stapling
|
|
|
|
# fetch OCSP records from URL in ssl_certificate and cache them
|
|
|
|
ssl_stapling on;
|
|
|
|
ssl_stapling_verify on;
|
|
|
|
|
|
|
|
# verify chain of trust of OCSP response using Root CA and Intermediate certs
|
|
|
|
ssl_trusted_certificate /certs/chain.pem;
|
|
|
|
|
2021-01-05 17:12:00 -07:00
|
|
|
# resolver should be specified in nginx.conf or in networking configuration
|