File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# intermediate configuration. tweak to your needs.
2
- ssl_protocols TLSv1.2 TLSv1.3;
3
- 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';
4
- ssl_prefer_server_ciphers off;
2
+ ssl_protocols TLSv1 TLSv1.1 TLSv1 .2 TLSv1.3;
3
+ # 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';
4
+ # ssl_prefer_server_ciphers off;
Original file line number Diff line number Diff line change
1
+ openssl_conf = default_conf
2
+
3
+ [default_conf]
4
+ ssl_conf = ssl_sect
5
+
6
+ [ssl_sect]
7
+ system_default = system_default_sect
8
+
9
+ [system_default_sect]
10
+ # allow everything down to TLS 1.0
11
+ MinProtocol = TLSv1
12
+ # disable the security level checks so even RC4 / old ciphers work
13
+ CipherString = DEFAULT:@SECLEVEL =0
You can’t perform that action at this time.
0 commit comments