fastapi-svelte-template/Caddyfile

14 lines
168 B
Caddyfile

:8000 {
handle_path /api/* {
reverse_proxy * todo-backend:3000
}
handle * {
reverse_proxy * todo-frontend:3000
}
log {
output stderr
format console
}
}