1
0

Merge pull request #570 from dsullivan/master

Set auth_request off for acme challenge location
This commit is contained in:
Nicolas Duchon 2019-08-20 22:30:32 +02:00 committed by GitHub
commit 7cc7f10f43
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -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;