mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-26 00:52:28 +00:00
12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
# Letsencrypt Verification Temporary Host: <%- hostname %>
|
|
server {
|
|
listen 80;
|
|
server_name <%- hostname %>;
|
|
|
|
access_log /config/logs/letsencrypt.log proxy;
|
|
|
|
location / {
|
|
root /config/letsencrypt-acme-challenge;
|
|
}
|
|
}
|