From 6ac2ce1197557d3d59b6afde45991d88e01cf758 Mon Sep 17 00:00:00 2001 From: Noa Virellia Date: Wed, 11 Feb 2026 22:31:38 +0800 Subject: [PATCH] fix(client): caddy try_file Signed-off-by: Noa Virellia --- deploy/client-cms.Caddyfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deploy/client-cms.Caddyfile b/deploy/client-cms.Caddyfile index dfdd65a..64bd8bd 100644 --- a/deploy/client-cms.Caddyfile +++ b/deploy/client-cms.Caddyfile @@ -1,6 +1,9 @@ :3000 { root * /srv encode zstd gzip - try_files {path} /index.html - file_server + + handle_path /app/* { + try_files {path} /index.html + file_server + } }