verdverm.com
Explore posts from serversCDCloudflare Developers
•Created by verdverm.com on 4/3/2025 in #general-help
Losing headers through Cloudflare Tunnel
I have I setup where a worker and an auth server are behind the same tunnel.
1. NextJS frontend (worker) (dev.domain.com)
2. Auth server (GCP) (auth.domain.com)
both run on the same domain
During auth, the FE fetches from the Auth server (effectively a proxy)
I can see the auth server returning the headers I expect from its logs, however the response in Next is missing them and has a bunch of CF headers added as well. The auth server has both allow origin / headers set to *
Anyone know what's going on and how I can get my headers to persist through the CF tunnel?
1 replies
PPrisma
•Created by verdverm.com on 2/8/2025 in #help-and-questions
Next + Cloudflare Workers + D1
I'm trying to use Prisma in a Next app on Cloudflare Workers and D1.
I have gone through all the setup steps and tried to use the ...FORCE_WASM...=1
But on actual deploy, I keep getting
fs.readdir
not available. My understanding is that this should work, that prisma supports edge runtimes (examples for prisma+d1 exist), and that something is not being built or setup right such that prisma doesn't try to use functions it knows it shouldn't in an edge runtime40 replies
CDCloudflare Developers
•Created by verdverm.com on 1/31/2025 in #general-help
Websockets, Workers, and CPU millis question
I was reading about the Websocket Hibernation on Durable Objects [1] as a way to reduce workload and costs. The note there says that this is for server only, not WS clients, which makes sense.
Are there similar strategies for a WS client using something else in the CF product portfolio? If I have an always on WS client, will I be charged for all the CPU milliseconds in a month? Does CF account for how much work my actual worker does vs being idle waiting for a message on a WS connection?
My goal is to have a WS client connect to a remote stream [2] and listen forever, but I don't expect a lot of messages. The remote server is outside of my control and only offers WS streams of events.
[1] https://developers.cloudflare.com/durable-objects/best-practices/websockets/#websocket-hibernation-api
[2] https://developers.cloudflare.com/workers/examples/websockets/#write-a-websocket-client
1 replies