1
0
Fork 0

Set auth_request off for acme challenge location

This commit is contained in:
Dan Sullivan 2019-08-18 21:19:36 -04:00
parent d5f48cf8ec
commit 9071075d32

View File

@ -1,5 +1,6 @@
location ^~ /.well-known/acme-challenge/ {
auth_basic off;
auth_request off;
allow all;
root /usr/share/nginx/html;
try_files $uri =404;