Skip to content

Commit

Permalink
Enable TLS 1.3 in nginx.conf
Browse files Browse the repository at this point in the history
TLS 1.3 has been supported in nginx since 2018. This change brings nginx.conf to parity with what nginx recommends by default.
  • Loading branch information
DavidSchinazi authored Dec 18, 2024
1 parent 42400fa commit be408e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker-compose/default/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http {
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
Expand Down

0 comments on commit be408e4

Please sign in to comment.