From f3a319e7f9db8a766d76068af553b4dc3394ecb2 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 6 May 2025 23:39:52 +0900 Subject: [PATCH] Add auth_basic/req off --- Production/nginx.tmpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Production/nginx.tmpl b/Production/nginx.tmpl index b2bca24..4e8f2d1 100644 --- a/Production/nginx.tmpl +++ b/Production/nginx.tmpl @@ -517,6 +517,8 @@ server { # Allow acme challenge requests without redirect location ^~ /.well-known/acme-challenge/ { + auth_basic off; + auth_request off; allow all; root /usr/share/nginx/html; try_files $uri =404;