2018-07-07 18:41:41 +00:00
|
|
|
# We track the Mozilla "intermediate" compatibility TLS recommendations.
|
|
|
|
# Note that these settings are repeated in the SMTP and IMAP configuration.
|
2018-10-25 19:18:21 +00:00
|
|
|
# ssl_protocols has moved to nginx.conf in bionic, check there for enabled protocols.
|
2019-12-01 22:49:36 +00: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;
|
2018-07-07 18:41:41 +00:00
|
|
|
ssl_dhparam STORAGE_ROOT/ssl/dh2048.pem;
|
2014-04-18 00:27:52 +00:00
|
|
|
|
|
|
|
# as recommended by http://nginx.org/en/docs/http/configuring_https_servers.html
|
2017-10-03 15:44:01 +00:00
|
|
|
ssl_session_cache shared:SSL:50m;
|
|
|
|
ssl_session_timeout 1d;
|
2014-04-18 00:27:52 +00:00
|
|
|
|
2014-06-03 14:06:02 +00:00
|
|
|
# Buffer size of 1400 bytes fits in one MTU.
|
2014-04-18 00:27:52 +00:00
|
|
|
# nginx 1.5.9+ ONLY
|
2018-07-07 18:41:41 +00:00
|
|
|
ssl_buffer_size 1400;
|
2014-04-18 00:27:52 +00:00
|
|
|
|
|
|
|
ssl_stapling on;
|
2015-06-27 11:14:16 +00:00
|
|
|
ssl_stapling_verify on;
|
2015-06-06 23:24:09 +00:00
|
|
|
resolver 127.0.0.1 valid=86400;
|
2014-06-03 14:06:02 +00:00
|
|
|
resolver_timeout 10;
|
2018-07-07 18:41:41 +00:00
|
|
|
|
|
|
|
# h/t https://gist.github.com/konklone/6532544
|