system_configuration/root/etc/nginx/includes.d/10-certbot.conf

7 lines
149 B
Plaintext
Raw Normal View History

2023-04-15 01:23:32 -07:00
location ^~ /.well-known/acme-challenge/ {
allow all;
root /var/lib/letsencrypt/;
default_type "text/plain";
try_files $uri = 404;
}