diff options
author | crupest <crupest@outlook.com> | 2022-11-19 13:00:13 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-19 13:00:13 +0800 |
commit | 5fe53ec36e9298fd40a36877a9a5ceb791814f50 (patch) | |
tree | 9fe248e5379c66cbaa740243bebc04bb7df7cd29 /template/nginx/https-redirect.conf | |
parent | 02cb10f9dcf5cd228f563f28e607ad7403a5aa9c (diff) | |
download | crupest-5fe53ec36e9298fd40a36877a9a5ceb791814f50.tar.gz crupest-5fe53ec36e9298fd40a36877a9a5ceb791814f50.tar.bz2 crupest-5fe53ec36e9298fd40a36877a9a5ceb791814f50.zip |
No caddy, only nginx and certbot.
Diffstat (limited to 'template/nginx/https-redirect.conf')
-rw-r--r-- | template/nginx/https-redirect.conf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/template/nginx/https-redirect.conf b/template/nginx/https-redirect.conf new file mode 100644 index 0000000..6301836 --- /dev/null +++ b/template/nginx/https-redirect.conf @@ -0,0 +1,12 @@ +server { + listen 80 default_server; + listen [::]:80 default_server; + + location / { + return 301 https://$host$request_uri; + } + + location /.well-known/acme-challenge { + root /srv/acme; + } +} |