diff options
Diffstat (limited to 'template/nginx/https-redirect.conf')
-rw-r--r-- | template/nginx/https-redirect.conf | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/template/nginx/https-redirect.conf b/template/nginx/https-redirect.conf deleted file mode 100644 index 6301836..0000000 --- a/template/nginx/https-redirect.conf +++ /dev/null @@ -1,12 +0,0 @@ -server { - listen 80 default_server; - listen [::]:80 default_server; - - location / { - return 301 https://$host$request_uri; - } - - location /.well-known/acme-challenge { - root /srv/acme; - } -} |