Files
order_site/deploy/caddy/Caddyfile
T
2026-07-07 21:13:37 +08:00

21 lines
320 B
Caddyfile

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