Files
nginx-proxy-manager/src/backend/templates/dead_host.conf
2019-01-03 21:04:11 +10:00

15 lines
238 B
Plaintext

{% include "_header_comment.conf" %}
{% if enabled %}
server {
{% include "_listen.conf" %}
{% include "_certificates.conf" %}
access_log /data/logs/dead_host-{{ id }}.log standard;
{{ advanced_config }}
return 404;
}
{% endif %}