Files
order_site/deploy/caddy/Caddyfile
T
2026-04-08 16:30:42 +08:00

17 lines
249 B
Caddyfile

{$APP_DOMAIN: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
}
}