Files
nginx-proxy-manager/backend/templates/certbot-request.conf
Zoey d7db5527d9 changes on ssl
Signed-off-by: Zoey <zoey@z0ey.de>
2022-12-31 21:24:54 +01:00

17 lines
304 B
Plaintext

{% include "_header_comment.conf" %}
server {
listen 80;
listen [::]:80;
server_name {{ domain_names | join: " " }};
include conf.d/include/acme-challenge.conf;
include conf.d/include/block-exploits.conf;
location / {
include conf.d/include/acme-challenge.conf;
return 404;
}
}