Skip to content

Commit

Permalink
TLSv1.3 Added
Browse files Browse the repository at this point in the history
  • Loading branch information
openspeedtest committed Jul 8, 2023
1 parent 214662f commit 749af53
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions OpenSpeedTest-Server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ server_name _ localhost YOURDOMAIN;
# Nginx Server Windows SSL Performance was very poor! Better use Linux if you need SSL support.
ssl_certificate /etc/ssl/nginx.crt; # Use your own certificate & key
ssl_certificate_key /etc/ssl/nginx.key; # <-- key
ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
ssl_protocols TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers "ALL";
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:100m;
ssl_session_timeout 1d;
ssl_session_tickets on;
root /usr/share/nginx/html/;
index index.html;
client_max_body_size 35m;
Expand Down

0 comments on commit 749af53

Please sign in to comment.