Spaces:
Sleeping
Sleeping
File size: 735 Bytes
a366136 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # cloudflared tunnel configuration for A2A-SIN Agents
# Copy this file to cloudflared/config.yml and update with your tunnel credentials.
#
# Usage:
# cloudflared tunnel --config cloudflared/config.yml run
#
# Docs: https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/
tunnel: "<YOUR-TUNNEL-ID>"
credentials-file: /etc/cloudflared/<YOUR-TUNNEL-ID>.json
ingress:
# A2A endpoint — primary route for agent-to-agent communication
- hostname: "<agent-slug>.a2a.delqhi.com"
service: http://localhost:3000
# Health check endpoint
- hostname: "<agent-slug>.a2a.delqhi.com"
path: /health
service: http://localhost:3000
# Fallback — reject all other traffic
- service: http_status:404
|