12 lines
211 B
Plaintext
12 lines
211 B
Plaintext
# Letsencrypt Verification Temporary Host: <%- hostname %>
|
|
server {
|
|
listen 80;
|
|
server_name <%- hostname %>;
|
|
|
|
access_log /config/logs/letsencrypt.log proxy;
|
|
|
|
location / {
|
|
root <%- root_path %>;
|
|
}
|
|
}
|