nginx-certbot/src/nginx_conf.d/certbot.conf

17 lines
463 B
Plaintext

server {
# Listen on plain old HTTP
listen 80 default_server reuseport;
#listen [::]:80 default_server reuseport;
# Pass this particular URL off to certbot, to authenticate HTTPS certificates
location '/.well-known/acme-challenge' {
default_type "text/plain";
proxy_pass http://localhost:1337;
}
# Everything else gets shunted over to HTTPS
location / {
return 301 https://$http_host$request_uri;
}
}