summaryrefslogtreecommitdiff
path: root/nginx/nginx.conf
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-12-02 07:09:15 -0500
committerDaniel Micay <danielmicay@gmail.com>2020-12-02 07:09:15 -0500
commit41547b0e40e14ac78401029dd5a6b5926ba3367b (patch)
tree61b54a2bccc8694807ad8055c7a4f36b8d612ea0 /nginx/nginx.conf
parent197d15bbb3fb4504dac0a13d895d86bcf14b28e8 (diff)
remove unused RSA cipher configuration
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r--nginx/nginx.conf3
1 files changed, 1 insertions, 2 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
index 505c7f97..a61d9846 100644
--- a/nginx/nginx.conf
+++ b/nginx/nginx.conf
@@ -34,11 +34,10 @@ http {
ssl_certificate /etc/letsencrypt/live/grapheneos.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/grapheneos.org/privkey.pem;
- ssl_dhparam /etc/nginx/ssl-dhparams.pem;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 1d;
ssl_session_tickets off;
- 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_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305;
ssl_trusted_certificate /etc/letsencrypt/live/grapheneos.org/chain.pem;
ssl_stapling on;