harb/containers/Caddyfile

27 lines
527 B
Text
Raw Permalink Normal View History

2025-09-24 10:57:22 +02:00
:80 {
route /app* {
reverse_proxy webapp:5173
}
2025-10-11 10:55:49 +00:00
route /api/graphql* {
header Cache-Control "public, max-age=5"
2025-10-11 10:55:49 +00:00
uri strip_prefix /api
2025-09-24 10:57:22 +02:00
reverse_proxy ponder:42069
}
route /health* {
reverse_proxy ponder:42069
}
2025-10-11 10:55:49 +00:00
route /api/rpc* {
uri strip_prefix /api/rpc
2025-09-24 10:57:22 +02:00
reverse_proxy anvil:8545
}
2025-10-11 10:55:49 +00:00
route /api/txn* {
uri strip_prefix /api/txn
2025-09-24 10:57:22 +02:00
reverse_proxy txn-bot:43069
}
route /analytics* {
uri strip_prefix /analytics
reverse_proxy umami:3000
}
reverse_proxy landing:5174
2025-09-24 10:57:22 +02:00
}