mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-02 15:33:32 +00:00
16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
{% include "_header_comment.conf" %}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name {{ domain_names | join: " " }};
|
|
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
|
|
location / {
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
return 404;
|
|
}
|
|
}
|