1
0
Fork 0
docker-letsencrypt-nginx-pr.../app/nginx_location.conf
2019-08-18 21:19:36 -04:00

9 lines
170 B
Plaintext

location ^~ /.well-known/acme-challenge/ {
auth_basic off;
auth_request off;
allow all;
root /usr/share/nginx/html;
try_files $uri =404;
break;
}