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.