diff --git a/nginx/templates/letsencrypt-proxy.conf.j2 b/nginx/templates/letsencrypt-proxy.conf.j2 index bc67d273..4c3978b0 100644 --- a/nginx/templates/letsencrypt-proxy.conf.j2 +++ b/nginx/templates/letsencrypt-proxy.conf.j2 @@ -1,6 +1,9 @@ server { - location /.well-known/acme-challenge { + listen 80 default_server; + location ^~ /.well-known/acme-challenge { proxy_pass http://127.0.0.1:{{ letsencrypt_acme_standalone_port}}/.well-known/acme-challenge; + access_log /var/log/nginx/letsencrypt_acmetool_access.log; + error_log /var/log/nginx/letsencrypt_acmetool_error.log; } }