summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-12-03 10:16:38 -0500
committerDaniel Micay <danielmicay@gmail.com>2020-12-03 10:16:38 -0500
commit85fb45cda307e752e3e535de9082992cd510ded2 (patch)
tree9ff1d182066363af59e4240beaadab738b1d18cc
parentdd97f682ff9f37ded4fe1ef8a51bd675fe575181 (diff)
move cipher configuration
-rw-r--r--nginx/nginx.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
index 489155aa..af258d05 100644
--- a/nginx/nginx.conf
+++ b/nginx/nginx.conf
@@ -30,6 +30,7 @@ http {
limit_conn addr 256;
ssl_protocols TLSv1.2 TLSv1.3;
+ ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256;
ssl_prefer_server_ciphers on;
ssl_certificate /etc/letsencrypt/live/grapheneos.org/fullchain.pem;
@@ -37,7 +38,6 @@ http {
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 1d;
ssl_session_tickets off;
- 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;