NgixProxy_Pathfinder/nginx/snippets/acme_challenge.conf

8 lines
177 B
Plaintext

# ACME Challenge for Certbot
location ^~ /.well-known/acme-challenge/ {
allow all;
root /var/lib/letsencrypt/;
default_type "text/plain";
try_files $uri =404;
}