16 lines
264 B
Caddyfile
16 lines
264 B
Caddyfile
{$CADDY_SITE_ADDR:http://localhost}, http://localhost, http://127.0.0.1 {
|
|
route {
|
|
handle /api/* {
|
|
reverse_proxy backend:3000
|
|
}
|
|
|
|
handle /health {
|
|
reverse_proxy backend:3000
|
|
}
|
|
|
|
handle {
|
|
reverse_proxy frontend:5173
|
|
}
|
|
}
|
|
}
|