Skip to content

Commit

Permalink
Disable TLS 1.0 and TLS 1.1 (#260)
Browse files Browse the repository at this point in the history
Updates nginx config to allow only TLSv1.2 and TLSv1.3.
Remove TLS 1.1 since it is now deprecated.
  • Loading branch information
johnbradley authored Nov 2, 2021
1 parent dd2cf6c commit 651e5ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ http {

ssl on;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;

Expand Down

0 comments on commit 651e5ec

Please sign in to comment.