Skip to content

Commit

Permalink
Merge pull request #281 from guardian/nginx-tls-ciphers
Browse files Browse the repository at this point in the history
Use modern TLS protocols and ciphers
  • Loading branch information
jamesgorrie authored Feb 15, 2024
2 parents 6b1d44b + 4a7b596 commit 99cdf5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/promotions.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ server {

ssl_session_timeout 5m;

ssl_protocols TLSv1;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;

# Proxy the Websocket connection to the Webpack server - see https://stackoverflow.com/a/40549432/438886
location /sockjs-node/ {
Expand Down

0 comments on commit 99cdf5e

Please sign in to comment.