Files
nginx-proxy-manager/backend/templates/certbot-request.conf

19 lines
336 B
Plaintext

{% include "_header_comment.conf" %}
server {
listen unix:/run/nginx.sock;
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;
}
}