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

Commit f8f77e7

Browse files
authored
Merge pull request #398 from nemchik/update_ciphers
Update ciphers
2 parents 1ce415a + 8043db0 commit f8f77e7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

readme-vars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,14 @@ app_setup_block: |
119119
* You can check which jails are active via `docker exec -it letsencrypt fail2ban-client status`
120120
* You can check the status of a specific jail via `docker exec -it letsencrypt fail2ban-client status <jail name>`
121121
* You can unban an IP via `docker exec -it letsencrypt fail2ban-client set <jail name> unbanip <IP>`
122-
* A list of commands can be found here: https://www.fail2ban.org/wiki/index.php/Commands
122+
* A list of commands can be found here: https://www.fail2ban.org/wiki/index.php/Commands
123123
124124
app_setup_nginx_reverse_proxy_snippet: false
125125
app_setup_nginx_reverse_proxy_block: ""
126126

127127
# changelog
128128
changelogs:
129+
- { date: "07.01.20:", desc: "Update ciphers from Mozilla ssl-config recommendations." }
129130
- { date: "01.01.20:", desc: "Add support for gandi dns validation." }
130131
- { date: "31.12.19:", desc: "GeoIP2 databases now require personal license keys to download. Auto download is disabled and log message is added." }
131132
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }

root/defaults/ssl.conf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2019/08/11 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/ssl.conf
1+
## Version 2020/01/07 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/ssl.conf
22

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

1515
# protocols
16+
# using generated 2020-01-07, https://ssl-config.mozilla.org/#server=nginx&server-version=1.16.1-r4&config=intermediate&openssl-version=1.1.1d-r3
1617
ssl_protocols TLSv1.2 TLSv1.3;
17-
ssl_prefer_server_ciphers on;
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';
18+
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;
19+
ssl_prefer_server_ciphers off;
1920

2021
# HSTS, remove # from the line below to enable HSTS
2122
#add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;

0 commit comments

Comments
 (0)