Skip to content

Commit

Permalink
Fix: now nginx will allow older browsers to negotiate deprecated ciphers
Browse files Browse the repository at this point in the history
  • Loading branch information
GJFR committed Jul 3, 2024
1 parent b2b63ef commit 3b6f506
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nginx/config/experiments.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ server {
listen 443 ssl;
server_name a.test sub.a.test sub.sub.a.test b.test sub.b.test leak.test adition.com;

# Our server requires to be accessible by older browsers, so even deprecated protocols and ciphers are allowed.
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers DEFAULT:@SECLEVEL=0;
ssl_certificate /etc/nginx/ssl/certs/bughog.crt;
ssl_certificate_key /etc/nginx/ssl/keys/bughog.key;

Expand Down

0 comments on commit 3b6f506

Please sign in to comment.