This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ Below are the instructions for updating containers:
235
235
236
236
## Versions
237
237
238
+ * ** 10.03.19:** - Add TLSv1.3 to ssl.conf.
238
239
* ** 02.03.19:** - Add php intl and posix modules.
239
240
* ** 27.02.19:** - Add gnupg package.
240
241
* ** 22.02.19:** - Rebase to alpine 3.9.
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ app_setup_nginx_reverse_proxy_block: ""
126
126
127
127
# changelog
128
128
changelogs :
129
+ - { date: "10.03.19:", desc: "Add TLSv1.3 to ssl.conf." }
129
130
- { date: "02.03.19:", desc: "Add php intl and posix modules." }
130
131
- { date: "27.02.19:", desc: "Add gnupg package." }
131
132
- { date: "22.02.19:", desc: "Rebase to alpine 3.9." }
Original file line number Diff line number Diff line change 1
- ## Version 2019/01/09 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/ssl.conf
1
+ ## Version 2019/03/10 - 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,7 +13,7 @@ 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.2;
16
+ ssl_protocols TLSv1.2 TLSv1.3 ;
17
17
ssl_prefer_server_ciphers on;
18
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
You can’t perform that action at this time.
0 commit comments