mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
11 lines
255 B
Plaintext
11 lines
255 B
Plaintext
# Letsencrypt Verification Temporary Host: {{ domain_names | join: ", " }}
|
|
server {
|
|
listen 80;
|
|
server_name {{ domain_names | join: " " }};
|
|
access_log /data/logs/letsencrypt.log proxy;
|
|
|
|
location / {
|
|
root /data/letsencrypt-acme-challenge;
|
|
}
|
|
}
|