Add auth_basic/req off

This commit is contained in:
nicolas.dorier 2025-05-06 23:39:52 +09:00
parent 9aa2d310f8
commit f3a319e7f9
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -517,6 +517,8 @@ server {
# Allow acme challenge requests without redirect # Allow acme challenge requests without redirect
location ^~ /.well-known/acme-challenge/ { location ^~ /.well-known/acme-challenge/ {
auth_basic off;
auth_request off;
allow all; allow all;
root /usr/share/nginx/html; root /usr/share/nginx/html;
try_files $uri =404; try_files $uri =404;