diff --git a/conf/nginx-site-ssl.conf b/conf/nginx-site-ssl.conf index ad8c122..d2ef551 100644 --- a/conf/nginx-site-ssl.conf +++ b/conf/nginx-site-ssl.conf @@ -60,4 +60,9 @@ server { deny all; } + location ^~ /.well-known { + allow all; + auth_basic off; + } + } diff --git a/conf/nginx-site.conf b/conf/nginx-site.conf index b04869f..bd2d64d 100644 --- a/conf/nginx-site.conf +++ b/conf/nginx-site.conf @@ -54,4 +54,9 @@ server { deny all; } + location ^~ /.well-known { + allow all; + auth_basic off; + } + }