Files
order_site/deploy/caddy/Caddyfile
T
2026-04-08 22:21:11 +08:00

17 lines
261 B
Caddyfile

{$CADDY_SITE_ADDR:http://localhost} {
route {
handle /api/* {
reverse_proxy backend:3000
}
handle /health {
reverse_proxy backend:3000
}
encode zstd gzip
root * /srv
try_files {path} /index.html
file_server
}
}