mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 11:40:04 +00:00
certificates work
This commit is contained in:
committed by
Jamie Curnow
parent
cf417fb658
commit
3a9fc8e2ea
14
src/backend/templates/letsencrypt-request.conf
Normal file
14
src/backend/templates/letsencrypt-request.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
{% 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user