Cloudflare Outage Map
The map below depicts the most recent cities worldwide where Cloudflare users have reported problems and outages. If you are having an issue with Cloudflare, make sure to submit a report below
The heatmap above shows where the most recent user-submitted and social media reports are geographically clustered. The density of these reports is depicted by the color scale as shown below.
Cloudflare users affected:
Cloudflare is a company that provides DDoS mitigation, content delivery network (CDN) services, security and distributed DNS services. Cloudflare's services sit between the visitor and the Cloudflare user's hosting provider, acting as a reverse proxy for websites.
Most Affected Locations
Outage reports and issues in the past 15 days originated from:
| Location | Reports |
|---|---|
| New York City, NY | 2 |
| Los Angeles, CA | 1 |
| Paris, Île-de-France | 1 |
| Manchester, England | 1 |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
Cloudflare Issues Reports
Latest outage, problems and issue reports in social media:
-
Devin Kurant (@DevinKofsky) reported@janxpm @Namecheap I spent 2 hours this morning thinking it was my fault and configuring cloudflare, only to discover the real issue. Clients think I broke there sites.
-
Onramp (@OnrampBitcoin) reportedMore of the internet's traffic is now agents than humans. Cloudflare expects a thousand to one within five years. The whole web runs on you showing up to look at an ad. If a model reads the page for you, nobody shows up and nobody gets paid. The fix has been sitting there unbuilt since the nineties.
-
John C. 🇹🇹 (@jcamachott) reported@bhartzer @Namecheap "If you used @Cloudflare, for example, for DNS, then you could simply log into CF and point the DNS to another web host and your site or service would be back up and running in minutes." Not always as simple as it sounds. This also means restoring a website with yesterday's data to a new hosting account. It's really unusual for a hosting account to go down for several hours like this
-
Andy aka Mrdudestar (@mrdudestar) reported@FootballManager @FootballManager cloudflare error trying to sign in to fmfc
-
Timzen (@timzen_ofc) reported@timonvlr @riotgames @VALORANT website told me that they have server problems after I tried to relog in... So I asked if its maybe cloudflare. Idk whats the problem :/
-
Sterling Labs (@sl_wire) reportedA crawl is a program walking the web on its own, saving a copy of each page to build the pile of text a model learns from. Each page gets taken once. That was 36.40% of AI bot traffic in January 2025 and 44.56% in July. Agent traffic is the other thing, a page fetched right then because you asked, and it was 2.63% last October and 2.65% in July. Nine months flat. Both are shares of AI bot traffic, not of the web. @CloudflareRadar counts this because Cloudflare sits in front of a big share of it, and out on the whole web bots were 34.81% of requests in July against 65.19% human. Agents are at most 0.92% of everything, and that assumes every bot is an AI bot. Call it a third of a percent. The tollbooth is already built. $NET opened Pay Per Crawl in private beta on July 1 at a one cent minimum per successful retrieval, and the network already returns more than two billion payment required responses a day. Its own June investor day line was that the vast majority never become a transaction. Purpose is self declared at registration and nobody audits it, so hold the levels loosely. Anthropic’s crawl to referral ratio fell from about 8,800 requests per referral in April to 2,800 in July, and Adobe measured AI referred retail visits up 138% year over year in May. We are following what the models tell us. The agents aren’t out doing the shopping. Yet.
-
Chan Walrus (@chanwalrus) reported@kidariseyogt @NamecheapCEO @Cloudflare I've had some hideous problems with Cloudflare in the past to the point where if I see a captcha, I just close a site. Probably best not to get into it here as my GOD... I have a LOT of work to do today. XD
-
Jabol aso (@Jabolaso) reported@mikeydsoftware @Aditya_181105 Self managed server can use cloudflare services, but i dont have a usecase to use vercel, if im a self managing. Most of vercel service are related to their app deployment service
-
Alex @Bickov (@bickov) reportedFound out this week that Cloudflare was telling ClaudeBot, GPTBot and every other AI crawler to stay off my site. I never set that. A default toggle was writing my robots.txt for me and I had no idea
-
Alpha Batcher (@alphabatcher) reportedA cold email got him a Cloudflare interview, no leetcode anywhere First round was a Lead Staff Engineer from the AI Workers team going deep on rooflining, batch size tradeoffs, p50 against p99, TTFT, and where a pipeline actually bottlenecks He had all of it from optimising rerankers and embedding models on in-house GPUs He still did not get the role, because encoder-only stacks skip attention and KV cache, so vLLM and SGLang never showed up in his day job 44 to 58 LPA, lost to a gap he can name in one sentence, which is what makes the writeup worth reading
-
Rattey (@theRattey) reportedfigma made design multiplayer. ai just made it single player again. designers spent ten years drifting away from code. frameworks kept changing, figma didn't, so everyone settled into rectangles and flows. now ai writes html without complaint, and the quickest way to show an idea is a real page in a browser. real text, real hover states, ten versions in one file. the mockup is the website. the trade is collaboration. one team i read about ran a two week launch sprint entirely in html prototypes. best visual work they'd done in years. sharing it was misery. the marketing lead couldn't open the file, let alone change a word. feedback came in a separate doc. nobody knew which of the six saved versions was the latest. my fix is simple. the agent builds the page, pushes it to vercel or cloudflare, and i send one link. it has a comment box built in. teammates leave notes on it, the agent reads them and makes the edits. no separate doc, no version chaos. and before any of that, twenty minutes asking if the thing should exist at all. building is almost free now. thinking still costs the same.
-
Ryan Hart (@thisdudelikesAI) reportedI replaced my $2k/mo n8n stack with one Cloudflare Worker Sounds insane but hear me out n8n was doing 4 things for me: 1. Scraping 6 sites every 15 min 2. Running them through an LLM for classification 3. Dropping the good ones into a database 4. Firing a Telegram alert when something scored high That was it. 4 nodes worth of logic spread across 12 automations, a hosted plan, a Postgres addon, a queue worker, and a bill that kept climbing every month Then I sat down with Codex and asked one question: "what would this look like as a single script" 30 minutes later I had a Cloudflare Worker doing the exact same thing Here's the full stack: - Cloudflare Worker (the whole app, one file) - Cron Triggers (replaces n8n's scheduler, free) - Workers KV (replaces Postgres for this use case, free tier is plenty) - Workers AI or a direct call to Gemini Flash (classification, pennies) - Telegram Bot API (same as before, free) Total cost: $5 a month. And that's only because I upgraded the Worker plan for longer CPU time. You could genuinely run this on $0 The lesson isn't that n8n is bad. It's great for prototyping and for people who don't code The lesson is that once you know what your automation actually does, 90% of the visual builder is overhead you're paying for A Worker is a function. Your automation is a function. Skip the middleman If you're paying $500+ a month for any no-code automation tool right now, do this today: 1. Open Codex or Claude Code 2. Paste your workflow logic in plain english 3. Ask it to rebuild the whole thing as a single Cloudflare Worker 4. Deploy with 'wrangler deploy' 5. Delete the n8n subscription You'll be shocked how small the code actually is The no-code wave was a bridge. AI-written code is the destination
-
Joseph Lorenzo Hall, PhD (@JoeBeOne) reportedThe archive is public, so this isn’t a “harvest now, decrypt later” use case (no secrets!). It is a useful real-world compatibility test. I’d love to see Backblaze add PQ key exchange support to B2 so Cloudflare-to-origin connections can use it without falling back to X25519. 6/6
-
Artyom Shimanski (@a_shimanski) reported@sloaxleak @Namecheap @Cloudflare yeah, you're right. paying isn't the problem, picking one that stays up is
-
@jorgediazapps (@jorgediazapps) reportedI wired Grok Bot into the actual stack I run the company on. Not a toy demo. MCP where it exists. Raw API or the browser where it doesn’t. Live MCP right now: Gmail, Google Calendar, Google Drive Stripe + Link Coolify (read-only official MCP — writes go through their API) Cloudflare docs, builds, observability Typefully, Castmagic, Octolens DataForSEO, DataFast, Apify Resend, AgentMail Composio, Context7 No real MCP, still connected: Enlac. ee (short links + static hosting — dashboard + API) Outrank (blog → Strapi webhook) Strapi on cms. doublemyleads .com Facebook via the signed-in browser (never paste the password) GitHub official MCP The bot doesn’t get a new brain. It gets the same tools I already pay for. That’s the whole trick.