Skip to content

Commit 75ef867

Browse files
Enable TLS1
1 parent 5e66d67 commit 75ef867

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# 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;

docker/rootfs/etc/openssl.cnf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)