mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
15 lines
260 B
Plaintext
15 lines
260 B
Plaintext
{% include "_header_comment.conf" %}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name {{ domain_names | join: " " }};
|
|
|
|
access_log /data/logs/letsencrypt-requests.log proxy;
|
|
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
|
|
location / {
|
|
return 404;
|
|
}
|
|
}
|