This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
257
257
258
258
## Versions
259
259
260
+ * ** 01.08.19:** - Mark https redirect block as default_server (effective only for new installs).
260
261
* ** 31.07.19:** - Create GeoIP2 databse (libmaxminddb) during container start if it doesn't exist.
261
262
* ** 30.07.19:** - Support main domain via duckdns validation.
262
263
* ** 29.07.19:** - Enable http to https redirect by default (effective only for new installs).
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: "01.08.19:", desc: "Mark https redirect block as default_server (effective only for new installs)." }
129
130
- { date: "31.07.19:", desc: "Create GeoIP2 databse (libmaxminddb) during container start if it doesn't exist." }
130
131
- { date: "30.07.19:", desc: "Support main domain via duckdns validation." }
131
132
- { date: "29.07.19:", desc: "Enable http to https redirect by default (effective only for new installs)." }
Original file line number Diff line number Diff line change 1
- ## Version 2019/07/29 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/default
1
+ ## Version 2019/08/01 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/default
2
2
3
3
# redirect all traffic to https
4
4
server {
5
- listen 80;
6
- listen [::]:80;
5
+ listen 80 default_server ;
6
+ listen [::]:80 default_server ;
7
7
server_name _;
8
8
return 301 https://$host$request_uri;
9
9
}
You can’t perform that action at this time.
0 commit comments