fix: Caddy routing for /admin without trailing slash

This commit is contained in:
Junv (via Hermes)
2026-06-14 10:59:14 +10:00
parent d4484e6750
commit 3e36501eba
+3
View File
@@ -17,6 +17,9 @@
}
# Admin Web UI → Python service
handle /admin {
reverse_proxy localhost:3000
}
handle /admin/* {
reverse_proxy localhost:3000
}