server-configs-nginx/h5bp/tls/policy_balanced.conf

21 lines
797 B
Nginx Configuration File
Raw Normal View History

2018-11-25 19:13:33 +01:00
# ----------------------------------------------------------------------
2021-06-14 12:43:22 +02:00
# | SSL policy - Balanced |
2018-11-25 19:13:33 +01:00
# ----------------------------------------------------------------------
2021-06-14 12:43:22 +02:00
# For services that need to support a wide range of clients, this configuration
2021-06-14 20:21:21 +02:00
# is reasonably balanced.
2018-11-25 19:13:33 +01:00
#
# (1) The NIST curves (prime256v1, secp384r1, secp521r1) are known to be weak
# and potentially vulnerable but are required to support Microsoft Edge
# and Safari.
# https://safecurves.cr.yp.to/
#
2018-11-25 19:13:33 +01:00
# https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_configurations
# https://nginx.org/en/docs/http/ngx_http_ssl_module.html
ssl_protocols TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES;
# (1)
ssl_ecdh_curve X25519:prime256v1:secp521r1:secp384r1;