Skip to content

Commit 3623544

Browse files
Use TLS 1.3 with high security ciphers
1 parent be23195 commit 3623544

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ssl.conf

+6
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ listen 443 ssl http2;
22
ssl_certificate /etc/letsencrypt/live/uspgamedev.org/fullchain.pem;
33
ssl_certificate_key /etc/letsencrypt/live/uspgamedev.org/privkey.pem;
44
ssl_trusted_certificate /etc/letsencrypt/live/uspgamedev.org/chain.pem;
5+
ssl_protocols TLSv1.2 TLSv1.3;
6+
ssl_prefer_server_ciphers on;
7+
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
8+
ssl_session_cache shared:SSL:100m;
9+
ssl_session_timeout 20m;
10+

0 commit comments

Comments
 (0)