recipe_app/frontend/Caddyfile

14 lines
176 B
Text
Raw Permalink Normal View History

2026-01-28 13:17:57 -08:00
:80 {
# Backend
handle /api/* {
2026-01-30 10:12:33 -08:00
reverse_proxy backend:3000
2026-01-28 13:17:57 -08:00
}
# Frontend
handle {
root * /srv/
try_files {path} /index.html
file_server
}
}