This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree 3 files changed +9
-8
lines changed 3 files changed +9
-8
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
+ * ** 29.07.19:** - Enable http to https redirect by default (effective only for new installs).
260
261
* ** 01.07.19:** - Patch geoip2 module until upstream is fixed.
261
262
* ** 30.06.19:** - Add geoip2 module.
262
263
* ** 28.06.19:** - Rebasing to alpine 3.10.
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: "29.07.19:", desc: "Enable http to https redirect by default (effective only for new installs)." }
129
130
- { date: "01.07.19:", desc: "Patch geoip2 module until upstream is fixed." }
130
131
- { date: "30.06.19:", desc: "Add geoip2 module." }
131
132
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
Original file line number Diff line number Diff line change 1
- ## Version 2018/12/05 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/default
1
+ ## Version 2019/07/29 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/default
2
2
3
- # listening on port 80 disabled by default, remove the "#" signs to enable
4
3
# redirect all traffic to https
5
- # server {
6
- # listen 80;
7
- # listen [::]:80;
8
- # server_name _;
9
- # return 301 https://$host$request_uri;
10
- # }
4
+ server {
5
+ listen 80;
6
+ listen [::]:80;
7
+ server_name _;
8
+ return 301 https://$host$request_uri;
9
+ }
11
10
12
11
# main server block
13
12
server {
You can’t perform that action at this time.
0 commit comments