mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
16 lines
355 B
Handlebars
16 lines
355 B
Handlebars
|
server {
|
||
|
listen 80;
|
||
|
{{#if ipv6}}
|
||
|
listen [::]:80;
|
||
|
{{/if}}
|
||
|
|
||
|
server_name{{#each domain_names}} {{this}}{{/each}};
|
||
|
access_log {{npm_data_dir}}/logs/acme-requests_access.log standard;
|
||
|
error_log {{npm_data_dir}}/logs/acme-requests_error.log warn;
|
||
|
{{nginx_conf_dir}}/npm/conf.d/include/letsencrypt-acme-challenge.conf;
|
||
|
|
||
|
location / {
|
||
|
return 404;
|
||
|
}
|
||
|
}
|