From d0f8b761540aa68b38f5448fac660f6b7ded4156 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Fri, 7 Aug 2026 12:46:01 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20use=20mux.Handle(/inspect/)=20to=20match?= =?UTF-8?q?=20sub-paths=20=E2=80=94=20Zoraxy=20sends=20/inspect/some/page?= =?UTF-8?q?=20not=20/inspect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 424509f..87def52 100644 --- a/main.go +++ b/main.go @@ -57,7 +57,8 @@ func main() { mux := http.NewServeMux() - // Static capture handler — all proxied traffic hits this. + // Static capture handler — must match sub-paths (Zoraxy sends /inspect/some/page). + mux.Handle("/inspect/", http.HandlerFunc(handleInspect)) mux.HandleFunc("/inspect", handleInspect) // UI + config API.