matt // unweb
Explore posts from serversCDCloudflare Developers
•Created by matt // unweb on 5/3/2024 in #general-help
Pending site nameservers delay
Hello, I'm attempting to transfer my domain to Cloudflare, but the site appears to be stuck waiting for the nameservers to update. I understand DNS propagation can take a while, but the updated values have been appearing on 1.1.1.1 and 8.8.8.8 for a few hours now
31 replies
DTDrizzle Team
•Created by matt // unweb on 2/25/2024 in #help
Index column sort
When creating an index for an sqlite table, how can I tell it to order by the
createdAt
column DESC1 replies
CDCloudflare Developers
•Created by matt // unweb on 9/8/2023 in #workers-help
Building tips (vite/esbuild)
Hi there, I don't use wrangler to deploy but rather I bundle using esbuild and then deploy my script via terraform. I've had to implement a few workarounds, mainly node compat, to get my bundle working. For example, replace any global
Buffer
references with an import, and stubbing the "os" module with some fake data to get opentelemetry working
I'm now trying to bundle jose
which claims cloudflare support, but having some issues - namely they're importing buffer
without the node:
prefix, and they're importing crypto
instead of using the global API.
How can I get my build to create a bundle that just works on cloudflare?2 replies
CDCloudflare Developers
•Created by matt // unweb on 7/3/2023 in #workers-help
authenticating requests via api key
How can I issue api keys to my users and then authenticate them quickly at edge?
1 replies
CDCloudflare Developers
•Created by matt // unweb on 5/20/2023 in #workers-help
Detect when worker was invoked via service binding
Hi there, how do I detect whether my worker was invoked via a HTTP Route or via a service binding from another worker? I would like to skip auth + implement custom logic in the latter scenario
2 replies