# HG changeset patch # User Kim Alvefur # Date 1685108318 -7200 # Node ID b6af4d1ff8c191f4332d32a2142f66251b18beb5 # Parent 7842502c115770818afa6229fae78bed336ea98f mod_http_debug: Handle any path under /debug/* as well Sometimes things encode useful info in paths. Could also help if you add path components in a reverse proxy. diff -r 7842502c1157 -r b6af4d1ff8c1 mod_http_debug/mod_http_debug.lua --- a/mod_http_debug/mod_http_debug.lua Fri May 26 15:37:15 2023 +0200 +++ b/mod_http_debug/mod_http_debug.lua Fri May 26 15:38:38 2023 +0200 @@ -26,6 +26,7 @@ local route = {}; for method in methods do route[method] = handle_request; + route[method .. " /*"] = handle_request; end module:provides("http", {