18 lines
182 B
Caddyfile
18 lines
182 B
Caddyfile
{
|
|
auto_https off
|
|
}
|
|
|
|
:80 {
|
|
handle /health {
|
|
respond "ok" 200
|
|
}
|
|
|
|
handle_path /api/* {
|
|
reverse_proxy {$BACKEND_UPSTREAM}
|
|
}
|
|
|
|
handle {
|
|
reverse_proxy {$FRONTEND_UPSTREAM}
|
|
}
|
|
}
|