From 3e36501ebade9c3d07b261fab55090e329c94a3e Mon Sep 17 00:00:00 2001 From: "Junv (via Hermes)" Date: Sun, 14 Jun 2026 10:59:14 +1000 Subject: [PATCH] fix: Caddy routing for /admin without trailing slash --- home-apps/demo-service/Caddyfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-apps/demo-service/Caddyfile b/home-apps/demo-service/Caddyfile index 43e0e9e..06a6c61 100644 --- a/home-apps/demo-service/Caddyfile +++ b/home-apps/demo-service/Caddyfile @@ -17,6 +17,9 @@ } # Admin Web UI → Python service + handle /admin { + reverse_proxy localhost:3000 + } handle /admin/* { reverse_proxy localhost:3000 }