From e64e52292928cddc6483c04f4e3cafbc2be0edf8 Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Wed, 25 Feb 2026 01:27:19 +0100 Subject: [PATCH] fix: allow unauthenticated access to geoip-status endpoint --- proxy.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy.ts b/proxy.ts index 8ef6ced9..2874ad58 100644 --- a/proxy.ts +++ b/proxy.ts @@ -18,6 +18,7 @@ export default auth((req) => { pathname === "/login" || pathname.startsWith("/api/auth") || pathname === "/api/health" || + pathname === "/api/geoip-status" || pathname === "/api/instances/sync" ) { return NextResponse.next();