|
|
|
|
|
by myzie
689 days ago
|
|
Cloudflare Workers are great in general. The way they route client requests to the nearest Cloudflare data center means that a single client will most often end up with a small number (perhaps even 1) of public IP addresses coming out of Cloudflare. And to my knowledge, there's not a way to ask for your client to be routed in a different way. So due to this, AWS Lambda's inherent region-specific behavior is actually an advantage for Burrow, since we can ask to be routed through a specific region (no matter how distant) by virtue of hitting the per-region Lambda URLs. That said, you could actually layer the two together if you were so inclined, and/or optionally route through Cloudflare and AWS. Making the Cloudflare Worker implementation of this would be trivial and there's no dependency on Go in any way for the proxy itself. |
|