Skip to content

Commit

Permalink
dropped TLSv1.2 in nginx streams
Browse files Browse the repository at this point in the history
  • Loading branch information
Cielquan committed Nov 6, 2019
1 parent 012b7a0 commit 0ab8f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx-docker/templates/dns-over-tls.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ server {
include snippets/cert_DOMAIN.conf;
ssl_dhparam /etc/nginx/dhparam.pem;

ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_protocols TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256;
ssl_handshake_timeout 10s;
ssl_session_cache shared:DoT:20m;
ssl_session_timeout 4h;
Expand Down

0 comments on commit 0ab8f5f

Please sign in to comment.