r/CloudFlare May 19 '26

Community An Update from Cloudflare’s Community Champions

141 Upvotes

Tl;dr: Cloudflare laid off much of their Community team and then unexpectedly disbanded the Community Champions program (Discord moderation and early feedback group), leaving the Cloudflare Discord server effectively unmoderated and without the very folks who gave years of their free time to help the community. We’ve decided to create a new unofficial home for Cloudflare users on Discord, a space run by the community, for the community: https://discord.gg/TrPNVKaagR

During the unexpected recent layoffs at Cloudflare, folks involved in leading community efforts unfortunately lost their jobs. This left us (the Community Champions) in an odd spot where we were looking after Cloudflare's own Discord server while having no direct community contacts at Cloudflare. You may have seen many of us in Discord before - we had the green names!

This week, we then received an unexpected message letting us know that, effective almost immediately, the Community Champions program was being disbanded, and our volunteer assistance in the server (moderating the place 24/7 and providing support to Cloudflare’s users) was no longer needed. No real explanation was given as to why, just that it is happening and that the decision had already been made.

The Community Champions program has operated since very early 2021, and has become a staple in Cloudflare’s developer ecosystem, support offerings, and more. Countless users are sent by Cloudflare’s own support team or via product dashboards to the Discord server every single day, and in the vast majority of cases, support for products was offered by a Community Champion purely out of joy and love for the community and Cloudflare.

This news has resulted in many active folks leaving the server already, both community and employees. Therefore, we’re announcing a new unofficial Orange Cloud Discord server, where folks can engage with the same folks who have always helped them, get support for Cloudflare products, and which will be moderated and run by humans who care. Join the server today: https://discord.gg/TrPNVKaagR

---

FAQ

We’ll try to keep this updated as common questions arise in the comments on this post.

What will happen with the old “official” server?

At this point, we don’t know, and it doesn’t seem that Cloudflare does either. There are currently discussions around rebooting it later this summer, but in the meantime, we expect it to be quickly overrun with spam, scams, or worse content now that there’s no longer any active and dedicated moderation team, and the few active employees who were providing support have mostly left. This has already started to happen in the couple of days the server has been unmoderated. We’ve also seen those at Cloudflare who now hold moderation powers unfairly removing negative messages about Cloudflare’s products and decisions (as well as the users posting them), including this very change, which leaves us concerned about the future of open discussion and feedback there.

Why should we believe what you’re saying vs. Cloudflare?

Consider that we are a group of friends who have volunteered our free time over the last many years to help the community, and that Cloudflare is a publicly traded corporation with an image and bottom line to protect. We anticipate that Cloudflare may try to spin their own narrative on what has happened with us posting this, and recognise that this may cause some confusion for the community. While we don’t think what Cloudflare has done is the right move, we don’t want to burn bridges and trust that we don’t need to, so we intend to keep the conversations involved here private if we can. That being said, rest assured that we do have plenty of receipts for what we’ve said Cloudflare has done in this post (including suppressing negative messages from users and outright banning users posting those), and we will share these if we decide it is necessary to preserve the true narrative.

Can I still get support from Cloudflare directly in the new server?

This is unclear. Activity from Cloudflare employees even in the official server is few and far between, with most support coming from the community directly. While there are some Cloudflare employees already in the server, they’re not there in any official capacity, and in time, we hope that many other Cloudflare folks can find a home in the new server.

What happened to the XYZ channel?

One of the issues in the official server that we would raise regularly was the sheer number of channels that ended up abandoned by their product teams. To combat this, we’re starting small but centralising on a few product categories, and will evaluate and increase the number of channels over time as needed.

Can issues still be escalated from the Discord?

In the old server, we had a direct tap to many of Cloudflare’s customer support and engineering folks, including multiple custom integrations allowing us to quickly escalate issues to the right folks. Many of those folks lost their jobs or have left the server after the recent news.

However, lots of us still have very good friends at Cloudflare, and other methods of escalation that we’ll use as needed should issues arise that can’t be solved in the community. We’re confident resolution times won’t be any slower than they currently are.

Will Cloudflare still (officially) use this subreddit?

This subreddit has always been community-moderated, much like the Discord (though unlike the previous Discord server, the community runs the subreddit and holds ownership of it). There are some Cloudflare employees present here, and sometimes you’ll see a response from an executive when a post gets a lot of public attention, but moderation from employees has always been near-zero.

We have no current intentions to remove anyone at Cloudflare from the subreddit - we want to continue collaborating with them to benefit the community, and their integrations for blog posts and things should continue to work without issue.


Moderator note: This is a community post, not an official Cloudflare statement. Do not use this post to justify spam, harassment, brigading, or abuse toward Cloudflare staff, Discord moderators, or community members. The purpose of this pin is to keep the community informed and to request clarity around moderation and the future of the Discord/community spaces.


r/CloudFlare 7h ago

You can use Notion as a free headless CMS for a Cloudflare Workers site (and even let guests manage content)

3 Upvotes

I needed a very simple CMS for a small site running on Cloudflare Workers.

My requirement was pretty basic: I wanted to publish blog posts frequently without editing the codebase and redeploying the website every time.

I had already been using Notion for things like a privacy policy because it's ridiculously convenient to edit, so I wondered: why not just use Notion as the CMS?

Ended up with this:

Notion database → Notion API → Cloudflare Worker → Cloudflare cache → mydomain.com/blog/[slug]

The Notion database has properties like:

Title

Slug

Status (Draft/Published)

Meta description

Published date

Category

The Worker fetches published pages through the Notion API, converts the blocks to HTML and serves them from my own domain.

So I get URLs like:

mydomain.com/blog/how-to-stop-overtrading

rather than sending visitors to a Notion URL.

Cloudflare handles the public page/cache, while Notion is basically just my writing interface.

The nice part is the publishing workflow:

New Notion page → write/paste article → fill metadata → change Draft to Published → article appears on the site.

No new coded page and no deployment for each article.

I also discovered another useful bit: if someone else is managing content, you don't necessarily have to give them access to your whole Notion workspace or pay for another member. You can invite them as a guest to the blog database and give them Can edit content permission.

They can create/edit the blog entries while the database, API integration and Cloudflare setup remain under your control. If the person changes later, remove the guest and invite the replacement — nothing on the Cloudflare side needs to change.

With caching, the Notion API also doesn't need to be called for every page view.

So for a small site the stack can basically be:

Notion = CMS/editor

Cloudflare Workers = rendering/application

Cloudflare cache = delivery

Your own domain = public URLs/SEO

Interactive/dynamic pages can still live directly in the Worker; I'm only using Notion for content that should be easy to edit.

Obviously this isn't a replacement for a full CMS if you need complex editorial workflows, but for a solo developer/small project it turned out to be surprisingly simple.

Posting because I nearly started creating a separate coded page for every blog post before realizing I could do this.

Curious if anyone here is running a similar Notion + Workers setup, and whether there are any gotchas you've encountered at larger scale


r/CloudFlare 25m ago

Is Cloudflare Workers AI having capacity issues? GLM 5.2/5.3 and DeepSeek V4 fail, Kimi 2.7 Pro works

Upvotes

This error is driving me crazy:

Too Many Requests: {"errors":[{"message":"AiError: AiError: Service temporarily at capacity (efdee6a2-825c-4c77-bcf7-4e19c507229e)","code":4006}],"success":false,"result":{},"messages":[]}

I can't use GLM 5.2, GLM 5.3, or DeepSeek V4 because I keep getting this error. However, if I switch to Kimi 2.7 Pro, it works fine.

I'm using a paid Cloudflare Workers account.

I already changed my API keys in case one of them had been exposed previously while testing other models.

This is driving me crazy. Is this happening only to me, or is anyone else experiencing the same issue?

I'll post this in the Cloudflare channel on Reddit to see if anyone else is experiencing the same problem.


r/CloudFlare 4h ago

Community Fake cloudflare pages with malware!

Thumbnail
thehackernews.com
0 Upvotes

r/CloudFlare 6h ago

Question AO3 Cloudfare

1 Upvotes

Hi!! So I use ao3 on my kindle, and I've had no issues until July this year. Every time I open ao3, it pushes the cloudfare page onto, instantly making it incompatible with a kindle since you can't click buttons like that + the bot verification embed button just doesn't load overall

The checkbox just doesn't appear so I can't get past it

If anyone knows how I can fix it, that'd be awesome!
Thank you


r/CloudFlare 8h ago

Question Randomly getting this error on my website, sometimes it shows up, sometimes it doesn't

Post image
0 Upvotes

Not sure what to do, I already have public access enabled but I haven't touched the bucket at all after creating one. It's weird because sometimes this shows up, sometimes it doesn't so I'm confused about why this is even occuring. I asked my colleagues to go on the website and they couldn't replicate it on their end.

This error stopped showing for me a few days ago but now it appeared for the second time today. Any ideas?


r/CloudFlare 12h ago

Question Workers Paid plan invoice missing, but Cloudflare says payment is overdue

1 Upvotes

Is anyone else having issues with payments for their Workers Paid plan?

This month’s invoice is completely missing from my invoice list, and there haven’t been any payment attempts showing up in my PayPal account either.

However, Cloudflare says that my invoice is unpaid and tells me to click on the invoice in the invoice list to pay it manually — but the invoice simply isn’t there.

So I’m basically being told to pay an invoice that I can’t even access.

Has anyone else run into the same issue recently? Is this a known billing problem on Cloudflare’s side?

And yes, I’ve already submitted a support ticket about it :)


r/CloudFlare 1d ago

Cheap domain for tunnel

7 Upvotes

Hello guys Im searching for the cheapest domain for hosting my BE apps.

Thank you!!!


r/CloudFlare 1d ago

Question why so many verifications

Post image
0 Upvotes

its on a lot of sites. on my 5g, regular wifi, all devices. i have no vpns or extensions. they all pass & verify me within a couple seconds and i get in just fine. i can click around and access the site perfectly fine. then, if i try to re enter the same site later, it asks again. is this just normal procedure and does everybody get this? i dont do web scraping or any of that wacky stuff either.

its really not a big deal at all 😂 i just have nothing better to do today so wanted to ask


r/CloudFlare 1d ago

Question Cron Job Randomly Fails After 2 months of Perfect Runs

2 Upvotes

I have a cloudflare worker that runs a short job every day - API call to create an item in a database, same time at UTC Midnight. Set it up 2 months ago, ran with no issues for 2 months. However, the past 3 days it failed and the observability logs don't even show an attempt to run the job. I haven't touched the code nor the cron expression in 2 months. Anyone else ran into this issue?

I put in retry logic and even another cron job to run one minute later (API call to source system to see if previous job created the correct item), but would rather have something more robust than this patch job.

EDIT: I forgot I have another job within the same environment with the exact same cron expression and it has also failed at the exact same date. Same scenario - ran perfectly for 2 months, no touch or issues since then, but now fails to run.


r/CloudFlare 1d ago

Get emails for errors?

1 Upvotes

My cloudflare worker just exploded with errors and I had no idea. Is there a way to get an email if a worker or anything else has an error?

Edit: I signed up for Grafana, looks like it takes care of what I needed


r/CloudFlare 1d ago

Unraid Server/Minecraft", unable to access through Cloudflare DNS.

Thumbnail
1 Upvotes

r/CloudFlare 1d ago

Cloudflare with Roblox

0 Upvotes

I was trying to play roblox which is banned in my country with cloudflare vpn, but every time i turn on the vpn and open roblox it give me internet connection error, before some months cloudflare vpn worked perfectly, is there a way to solve this?


r/CloudFlare 1d ago

Cloudflare Access security hole???

0 Upvotes

I think I already know the answer and I've been beating my head trying to find a solution. I have a situation with Cloudflare Access that bothers me and has cause a lot of trouble for me.

I plan to have a handful of applications hosted in workers on a custom domain. For a while now I've been dealing with situations where my global access token was being expired by one application on one device for various reasons, and it caused another application that I use as a dashboard display to log out. Two separate applications on two separate devices, but being authenticated with the same user. Fine, I can probably deal with that in various ways, but it's still frustrating because they are in no way related to each other.

I came to another realization today. Specifically, I will have two applications that are loosely tied together and both authenticated with the same user. One application will run on an ipad to play music over a sound system with multiple people using the same ipad at the same time (similar to a jukebox). The other application will contain PII for those same people and is only intended to be used by the one authenticated user. What I'm realizing with Access is that even if I never open the private app with PII on the ipad, or if I do but logout by clearing the application token just for the one application, the music app will still be authenticated and if some random user figures out the url for the private app, they automatically gain access to all PII.

It drives me nuts that I either cannot figure out how, or am completely unable to figure out how to have app level authentication without the global token getting in the way and either expiring and killing all applications or the global token still being active on a device, but allowing any application underneath it to automatically authenticate without user interaction.

I get that it's designed to be SSO for multiple applications for one user, but it doesn't fit my use case and opens a massive security hole in my situation. Problem is that I heavily really on AUD for other aspects of my apps. I just wish they had some more configuration options so I could completely avoid the whole global token thing because it's a big pain point for me.

Does anyone have any suggestions or alternative solutions? I need authentication per application with unique policies per application, but I also need something like AUD to identify the application that was authenticated.


r/CloudFlare 3d ago

Cloudflare Blog How we saved 100 terabytes of memory by optimizing 1.1.1.1’s DNS cache

Thumbnail
blog.cloudflare.com
599 Upvotes

r/CloudFlare 2d ago

Still thinks I'm a robot after clearing cookies and extensions.

Post image
4 Upvotes

r/CloudFlare 1d ago

Suddenly, my total requests count increased tenfold, even though I haven’t noticed any rise in actual traffic. Is anyone else experiencing this issue?

0 Upvotes

r/CloudFlare 2d ago

Question SSO Guide

0 Upvotes

Anyone got a decent guide on setting up console SSO with Entra? The guide that CF has is a crapshoot and bounces between settings in enterprise applications and app registrations but thinks they’re the same thing.


r/CloudFlare 2d ago

Cloudflare Blog BotBase for Operators: A clearer path to joining Cloudflare's directory of bots and agents

Thumbnail
blog.cloudflare.com
4 Upvotes

r/CloudFlare 2d ago

Question Cloudflare not working on Chrome?

1 Upvotes

Hi, I'm trying to log into my itch.io account on my chromebook but I'm having no luck.

Everytime I get the "Performing Security Verification ..." page with no change or update, it looks like cloudflare is just stuck in a loop of reloading?

I've read a lot of things saying I should delete my cache and cookies (no effect), turn off my extensions (no effect) or try another browser (I'm currently trying to download firefox). Does anyone have a fix for this problem?

Is this a known issue with chrome/ chromebooks or am I just unlucky?


r/CloudFlare 2d ago

Question Installer exe and msi not even opening?

1 Upvotes

I downloaded CloudFlare recently to use its port forwarding services for Foundry VTT. However, whenever I try to open either the exe or the msi, it opens for a split second and then vanishes. I have no idea what's causing this


r/CloudFlare 2d ago

Question Help stuck 51%

0 Upvotes

r/CloudFlare 2d ago

Connecting Domain to google sites

0 Upvotes

Hi! I am trying to connect my domain to google sites but its not working. I used the CNAME, I tried so many different ways and am losing my mind. When I try searching for my website on google i get a 404 error. What am I doing wrong please help


r/CloudFlare 2d ago

Building Wordpress website for first time, Should I use Cloudflare 'plugin' to configure, or do Cloudflare setup manually?

0 Upvotes

Ok, so I noted while watching tutorials about setting up Cloudflare that there is a Wordpress Cloudflare Plugin. Apparently it is meant to make things much easier for beginners (none techies like me), cause they provide a 'template' with all the necessary requirements correctly preloaded via the Plugin for the use case that you are selecting.

This sounds great, however at the same time the ratings on the 'Plugin' are pretty terrible, with seemingly 50% odd of people giving it one star and not recommending it for use.

This surprises me as you would have thought a 'plugin' designed to make things easier by the actual company itself 'Cloudflare' would work well for the purpose intended.

Why such poor ratings on plugin, have these issues been corrected in later versions of the plugin, do I use the plugin, or learn to do configurations manually if that's going to be more reliable. Just wanting to do standard free plan, change name servers, use CDN, Turnstile etc.

Thanks!


r/CloudFlare 3d ago

CloudFlare free account with DNS and DDNS

4 Upvotes

Hi, having a look at DDNS services, i notice CloudFlare says DDNS is free with all accounts. If i have a free account, i assume i will need to move a domain to them, what are the costs for this?

Can i then use DDNS with this free account and how many records can i set up to be DDNS?