Situation: Our small team (3 devs) have several partner apis (Stripe, Firebase, etc.) we work with that use webhooks. We’ve used Cloudflare Tunnel to set up a public endpoint "webhook-tunnel.example.com"
that we input into Stripe, Firebase, etc. dashboards. Then, when we’re working on local development, we’ll receive test webhooks to our localhost. It works great!
Problem: Only one dev (or CI) can use the tunnel at a time. If multiple devs try to connect to the tunnel, it just routes traffic to whoever made a connection first. There’s no error when the 2nd dev tries to connect. It says: Connection abc-123 registered with protocol: quic connIndex=3 ip=xxx location=SJC
for both devs.
Question: Is it possible to multicast so that all traffic gets sent to every connection? If Stripe sends us a webhook, we would like ALL current connections to get the same message.
Thank you for all you do! This product has been awesome!
Disclaimer: Sorry if this is obvious or has been answered somewhere else, this is my first time setting up Cloudflare so I may not be using the correct lingo and searching for the wrong things. (I’m primarily an iOS engineer).