Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 1286c4e

Browse files
authored
Merge pull request #280 from HenrikBacher/patch-1
Enabled TLS 1.3
2 parents 225b446 + 5e54c67 commit 1286c4e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ Below are the instructions for updating containers:
235235

236236
## Versions
237237

238+
* **10.03.19:** - Add TLSv1.3 to ssl.conf.
238239
* **02.03.19:** - Add php intl and posix modules.
239240
* **27.02.19:** - Add gnupg package.
240241
* **22.02.19:** - Rebase to alpine 3.9.

readme-vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ app_setup_nginx_reverse_proxy_block: ""
126126

127127
# changelog
128128
changelogs:
129+
- { date: "10.03.19:", desc: "Add TLSv1.3 to ssl.conf." }
129130
- { date: "02.03.19:", desc: "Add php intl and posix modules." }
130131
- { date: "27.02.19:", desc: "Add gnupg package." }
131132
- { date: "22.02.19:", desc: "Rebase to alpine 3.9." }

root/defaults/ssl.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33
# session settings
44
ssl_session_timeout 1d;
@@ -13,7 +13,7 @@ ssl_certificate /config/keys/letsencrypt/fullchain.pem;
1313
ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
1414

1515
# protocols
16-
ssl_protocols TLSv1.2;
16+
ssl_protocols TLSv1.2 TLSv1.3;
1717
ssl_prefer_server_ciphers on;
1818
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';
1919

0 commit comments

Comments
 (0)