From 81f5fafb61fef88101047dc3b433fb2d97579ef9 Mon Sep 17 00:00:00 2001 From: Adam French Date: Sun, 12 Apr 2026 22:05:22 +0100 Subject: [PATCH] Redirect auth-denied users to /admin login page instead of homepage Co-Authored-By: Claude Opus 4.6 --- nginx/nginx.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf.template b/nginx/nginx.conf.template index e0a62f2..d4f1654 100644 --- a/nginx/nginx.conf.template +++ b/nginx/nginx.conf.template @@ -246,7 +246,7 @@ http { } location @auth_denied { - return 302 /; + return 302 /admin; } location /searxng {