Moved v3 code from NginxProxyManager/nginx-proxy-manager-3 to NginxProxyManager/nginx-proxy-manager
This commit is contained in:
15
backend/embed/nginx/acme-request.conf.hbs
Normal file
15
backend/embed/nginx/acme-request.conf.hbs
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user