diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-12-02 07:33:51 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-12-02 07:33:51 -0500 |
| commit | 97520ea9ecbedb74e7ec5b698b9589cf2ccadc87 (patch) | |
| tree | ff44d0f0fc4cdd64b63566516d96ea6e22702909 | |
| parent | 41547b0e40e14ac78401029dd5a6b5926ba3367b (diff) | |
consistent cipher order for TLS 1.2 and TLS 1.3
| -rw-r--r-- | nginx/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a61d9846..62fdd854 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -37,7 +37,7 @@ http { ssl_session_cache shared:SSL:10m; ssl_session_timeout 1d; ssl_session_tickets off; - ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305; + ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256; ssl_trusted_certificate /etc/letsencrypt/live/grapheneos.org/chain.pem; ssl_stapling on; |
