DaniFoldi
CDCloudflare Developers
•Created by Agent on 12/16/2024 in #general-help
Hard time contacting Galileo team
got a ticket id for example you could share so they will know where to look?
6 replies
CDCloudflare Developers
•Created by Agent on 12/16/2024 in #general-help
Hard time contacting Galileo team
Hey, I've forwarded your message, unfortunately no guarantees but I can't help in any other way unfortunately
6 replies
CDCloudflare Developers
•Created by Lukas on 12/17/2024 in #workers-help
Hyperdrive database host string too short?
this is maybe a question for @thomasgauvin :MeowHeartCloudflare:
7 replies
CDCloudflare Developers
•Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
Josh got them in https://discord.com/channels/595317990191398933/1311005082791186473/1316138096319926334
20 replies
CDCloudflare Developers
•Created by Ibnu Rasikh - creatypestudio.co on 12/7/2024 in #workers-help
How to manage hono app that has more than 20,000 static assets?
Workers with Assets (and Pages) both use KV under the hood, so the speed should be the exact same
and KV can store binary data, Uint8Array is the raw bytes of the file, so you don't need to convert. Even better if you let it stream directly, then you don't need to buffer it into the memory of the worker, and it decreases the execution time by a few ms for large files.
4 replies
CDCloudflare Developers
•Created by noBody on 12/6/2024 in #workers-help
How to delete workers?
It's the last option at the bottom of this page (select the worker and then Settings tab): https://dash.cloudflare.com/?to=/:account/workers/services/view/:worker/production/settings
2 replies
CDCloudflare Developers
•Created by Ibnu Rasikh - creatypestudio.co on 12/7/2024 in #workers-help
How to manage hono app that has more than 20,000 static assets?
You can upload your files to a KV namespace (or an R2 bucket, more convenient with rclone/s3 at that scale) and use your Worker to retrieve them. You can also cache them if you don't expect them to change
4 replies
CDCloudflare Developers
•Created by Jace on 12/7/2024 in #general-help
Subscription management is absolutely scuffed
?billing
5 replies
CDCloudflare Developers
•Created by Jace on 12/7/2024 in #general-help
Subscription management is absolutely scuffed
I hear you, it's not great when billing stuff goes south. Unfortunately, the only way to get help is to open a billing ticket
5 replies
CDCloudflare Developers
•Created by Júlio on 12/4/2024 in #general-help
Redirect www to non-www not working
Hmm, besides the Cloudflare Fundamentals docs (https://developers.cloudflare.com/fundamentals/), there's the DNS docs (https://developers.cloudflare.com/dns/concepts/) and it has a link to the learning center. Especially the learning center has descriptions for a lot of the technical terms and abbreviations you'll see used everywhere (like what's a CNAME or AAAA record, or what is DNSSEC, and more complex stuff as well)
5 replies
CDCloudflare Developers
•Created by ballsnfalls on 12/4/2024 in #general-help
i used pages to upload a folder with HTML site, Now how do i overwrite or update this html ?
Basically, repeat your steps from your first deployment - if you used the dashboard, you can go through that flow again, or use wrangler to upload the files.
3 replies
CDCloudflare Developers
•Created by ballsnfalls on 12/4/2024 in #general-help
i used pages to upload a folder with HTML site, Now how do i overwrite or update this html ?
You can simply deploy your new version to your production environment, and it will automatically be made available on your custom domains.
Pages does not have a way to download the old files however, and it doesn't support "partial" updates, so you'll need to upload everything that you want available.
3 replies
CDCloudflare Developers
•Created by Júlio on 12/4/2024 in #general-help
Redirect www to non-www not working
Hmm, I checked and looks like you have no DNS record for www.reland.com.br.
If the sole purpose of www is to be redirected, you can create a proxied (orange clouded) AAAA record with the value
100::
which signals to Cloudflare that there is no real origin. All your requests would be redirected anyways (make sure to include http:// in this rule, or enable always https)5 replies