19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
{% include "_header_comment.conf" %}
|
|
|
|
server {
|
|
listen 80;
|
|
{% if ipv6 -%}
|
|
listen [::]:80;
|
|
{% endif %}
|
|
|
|
server_name {{ domain_names | join: " " }};
|
|
|
|
access_log /data/logs/letsencrypt-requests.log standard;
|
|
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
|
|
location / {
|
|
return 404;
|
|
}
|
|
}
|