Files
Genarrative/tools/Caddyfile.dev
2026-04-08 16:41:29 +08:00

22 lines
237 B
Caddyfile

{
auto_https off
}
:8080 {
root * {$CADDY_SITE_ROOT}
handle /api/* {
reverse_proxy {$CADDY_API_UPSTREAM}
}
handle /healthz {
respond "ok" 200
}
handle {
encode gzip zstd
try_files {path} /index.html
file_server
}
}