This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ This will *ask* Google et al not to index and list your site. Be careful with th
141
141
142
142
## Versions
143
143
144
+ + ** 09.01.19:** Remove tls v1 and v1.1 from default ssl.conf, update ciphers (existing users need to manually update).
144
145
+ ** 30.12.18:** Fix bundle key generation.
145
146
+ ** 19.12.18:** Add ipv6 and http/2 support to default site config.
146
147
+ ** 08.12.18:** Had to remove cert renewal during container start due to certbot's new undocumented "feature" of up to 8 minute random delay.
Original file line number Diff line number Diff line change 1
- ## Version 2018/05/31 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/ssl.conf
1
+ ## Version 2019/01/09 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/ssl.conf
2
2
3
3
# session settings
4
4
ssl_session_timeout 1d;
@@ -13,9 +13,9 @@ ssl_certificate /config/keys/letsencrypt/fullchain.pem;
13
13
ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
14
14
15
15
# protocols
16
- ssl_protocols TLSv1 TLSv1.1 TLSv1 .2;
16
+ ssl_protocols TLSv1.2;
17
17
ssl_prefer_server_ciphers on;
18
- ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE- ECDSA-AES128 -GCM-SHA256 :ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256: ECDHE-RSA-AES128-SHA256 :ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA :ECDHE-RSA-AES256-SHA384:ECDHE- ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA :ECDHE-ECDSA-AES256-SHA:DHE-RSA- AES128-SHA256:DHE -RSA-AES128-SHA:DHE-RSA-AES256- SHA256:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA ';
18
+ ssl_ciphers 'ECDHE-ECDSA-AES256 -GCM-SHA384 :ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305: ECDHE-RSA-CHACHA20-POLY1305 :ECDHE-ECDSA-AES128-GCM- SHA256:ECDHE-RSA-AES128-GCM-SHA256 :ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384 :ECDHE-ECDSA-AES128-SHA256:ECDHE -RSA-AES128-SHA256';
19
19
20
20
# HSTS, remove # from the line below to enable HSTS
21
21
#add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
You can’t perform that action at this time.
0 commit comments