ungleich-k8s/apps/nginx-certbot/base/nginx-80

17 lines
280 B
Plaintext
Raw Normal View History

2021-06-18 19:08:53 +00:00
server {
listen *:80;
listen [::]:80;
server_name _;
# Forward for certbot
location /.well-known/acme-challenge/ {
root /usr/share/nginx/html;
}
# Everything else -> ssl
location / {
return 301 https://$host$request_uri;
}
}