Files
social-media/deploy/caddy/Caddyfile
Jonathan Bourdon b6eb692c27
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled
chore: moving towards agentic development
2026-04-24 21:12:26 -04:00

22 lines
241 B
Caddyfile

:80 {
root * /srv
encode gzip zstd
handle /api/* {
reverse_proxy api:8080
}
handle /health {
reverse_proxy api:8080
}
handle /swagger/* {
reverse_proxy api:8080
}
handle {
try_files {path} /index.html
file_server
}
}