Files
stealth-ai-relay/caddy/Caddyfile.example
2026-01-21 01:20:01 +01:00

35 lines
675 B
Caddyfile

{
admin off
# acme_dns cloudflare {env.CLOUDFLARE_API_TOKEN}
log {
format console
}
servers {
trusted_proxies cloudflare
client_ip_headers Cf-Connecting-Ip
}
}
<DOMAIN> {
handle /convex* {
uri strip_prefix /convex
reverse_proxy stealth-ai-relay-convex:3210
}
handle /convex-http* {
uri strip_prefix /convex-http
reverse_proxy stealth-ai-relay-convex:3211
}
handle /convex-dashboard* {
uri strip_prefix /convex-dashboard
reverse_proxy stealth-ai-relay-convex-dashboard:6791
}
handle {
reverse_proxy stealth-ai-relay-frontend:3000
}
}