8 lines
179 B
Text
8 lines
179 B
Text
#/etc/nginx/snippets/letsencrypt.conf
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
allow all;
|
|
root /var/lib/letsencrypt/;
|
|
default_type "text/plain";
|
|
try_files $uri =404;
|
|
}
|