File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 44### Added
55- When a custom ` GIT_BRIDGE_IMAGE ` is set, ` bin/upgrade ` no longer tries to pull the new version, and prompts
66 the user to update and tag the custom image separately.
7+ - Tighten SSL security on nginx proxy
78
89## 2024-10-29
910### Added
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ http {
1515 ssl_certificate /certs/nginx_certificate.pem;
1616 ssl_certificate_key /certs/nginx_key.pem;
1717
18- ssl_protocols TLSv1 TLSv1.1 TLSv1.2 ;
19- ssl_prefer_server_ciphers on ;
20-
21- # used cloudflares ciphers https://github.com/cloudflare/sslconfig/blob/master/conf
22- ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+ 3DES :RSA+ 3DES :!MD5 ;
18+ # Intermediate Mozilla Config
19+ # https://ssl-config.mozilla.org/#server=nginx&version=1.26.0&config=intermediate&openssl=1.1.1w&ocsp=false&guideline=5.7
20+ ssl_protocols TLSv1.2 TLSv1.3 ;
21+ ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305 ;
22+ ssl_prefer_server_ciphers off ;
2323
2424 # config to enable HSTS(HTTP Strict Transport Security) https://developer.mozilla.org/en-US/docs/Security/HTTP_Strict_Transport_Security
2525 # to avoid ssl stripping https://en.wikipedia.org/wiki/SSL_stripping#SSL_stripping
You can’t perform that action at this time.
0 commit comments