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 | 3 |
| Los Angeles, CA | 1 |
| Paris, Île-de-France | 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:
-
Donatello | AI, Tech & Wealth (@donatelloinvest) reported@Cloudflare Performance and security are often treated as separate projects. For a global booking platform, they’re part of the same customer experience. A fast site that fails under pressure isn’t fast. A secure site nobody can use isn’t finished.
-
OG (@ogwithsauce) reportedWhy I think there needs to be some sort of control on social media. So... Stremio launched in 2015. Torrentio around 2020. Nothing "just died in Sofia" this week. And the two Bulgarians didn't build Torrentio. Different developer and completely unaffiliated. These two are two completely unrelated projects mixed into one origin story. "MIT License. 100% Opensource." Stremio's core is MIT. Its web client is GPL-2.0. Torrentio itself is CLOSED SOURCE. The part actually doing the scraping isn't on GitHub at all. Everyone can check by themselves. "No central server to seize." Torrentio IS a central server. A hosted service on somebody's VPS. Your client queries it and when it drops, it drops for everyone at once, and it has, repeatedly. "No account. No subscription." Reliable 4K means Real-Debrid or AllDebrid. That's an account and that's a monthly fee. Raw P2P is where the buffering lives. "Netflix cannot shut this down." They don't have to. Italian courts already forced Cloudflare to block torrent sites at the DNS layer. A Spanish court ordered NordVPN and Proton to block streams. RARBG, KAT are all seized, you simply attack the layer below, not the app - this is how these are handled. Now the biggest problem with this post is torrenting UPLOADS. To all you noobs cheaping out on Netflix sub and think this is actually a solution. Your IP is visible to every peer in the swarm. That's the enforcement surface and that's the actual risk that nobody mentions at all. The formula for these posts: Half of what is wrote here is checkable in five minutes. Goddamn people are stupid.
-
Javier (@escartin) reportedHere's a reminder for ppl with sites on Cloudflare: They block major LLM crawlers by default, so your site may be invisible to AI search. It's dumb, but I feel the percentage of sites with this problem is higher than you'd expect.
-
Pedro GmbH ∴ (@pedroviana) reported@clankenluben @0xRapid @Cloudflare you only run your services at production because of the existing teams like cloudflare, you bastard piece of ****
-
Edward Isoe (@am_eddy99) reported@GilbertBelion Self hosting. Starlink and ups. I am barely down,and no monthly subscriptions. Exposing to the web using cloudflare tunnel
-
Oğuzhan Çakmak (@omc345) reportedI build my own OTA updates for expo apps instead of paying for a service. CI exports the bundle, uploads it to R2, and a Worker serves the expo-updates manifest with channel and rollback logic Costs me $5 a month @Cloudflare ftw
-
Ryan K 🌥 (@Yank) reported@nimanikroo @CloudflareHelp @Cloudflare Live chat is available if you are on the Business plan. It looks like support has been responding but still needs some time to resolve. Let me see if I can get a new update to you.
-
tcpdump (@dump_tcp) reported@kxmcs @Cloudflare Never ran into that big of a ram issue so I guess we will see one day i also many people are using golang around me i never see anyone using rust for anything
-
TKS (@TKS701312296730) reported@MeltsIcy24536 It's clearly the problem because Cloudflare is trying to explain its reasons for failing. The 'genius' needs to get rid of this moronic verification system that's probably locking more legitimate users out of X than it is 'exterminating' real bots.
-
Glen Allsopp 👾 (@ViperChill) reportedThe Detailed newsletter got 100+ questionable signups today the space of an hour. Many got past reCAPTCHA and double opt-in, but AI saved the day. For context, I was using Kit's HTML form embeds, rather than JS. These sign-ups were happening without having to visit the site. Just replacing the form would potentially have the same issue so I created a new form, hid the URL behind a Cloudflare Workers endpoint, then applied rules to block the questionable emails based on their obvious pattern. No questionable signups since. Would have spent my entire day on something like this in the past. To clarify, this is not a criticism of Kit. This is partly my fault for having the form action URL visible (have not had an issue for years). The Kit API is part of what made this fix possible. Big fan of @nathanbarry and what he has built.
-
Dan Ryland (@RealDanRyland) reportedCan’t wait for @Cloudflare to support marketing emails via their email service. I’m already enjoying using it for transactional ones. Is there an ETA on this? @CloudflareDev
-
deif (@thedeif) reportedOne blocker I had with @AmpCode was a large startup cost (5 mins) to a dependent service. Seemed like a waste to make the Orb load it up each time. So instead I used Cloudflare Tunnel to give the Orb access to a VPS with the service running. Now it can smoke test on real data
-
Bilal Bakr (@bil0090) reported@maxktz @cursor_ai I think CloudFlare is/was down which is causing some problems
-
joker bonito (@abelle_01) reportedI use Hostpinnacle for domains, good customer care service. Cloudflare for the records such as DNS and MX. Vercel for lightweight web applications
-
Immanuel (@immanuel_vibe) reportedmost devs think eBPF is "that networking thing cloudflare uses" it's this: you can run your own code inside the linux kernel, safely, with no module, no patch, no reboot, on a box that's serving traffic right now a verifier proves your program can't crash the kernel or loop forever. then it's JIT'd to native speed. that's the whole trick what eBPF actually buys you: - see every exec, every file open, every TCP connect on the host. no agent inside the app, no code change, no restart - read TLS traffic before it's encrypted. uprobe on SSL_write. plaintext requests out of a binary you don't own and can't rebuild - drop millions of packets/sec at the driver, before the kernel allocates an sk_buff. that's XDP. that's how DDoS mitigation works now - delete iptables. cilium does k8s service routing in BPF hash maps instead of walking a linear rule chain that grows with your cluster - continuous profiling of every process on the box, every language, zero instrumentation, single-digit percent overhead. parca, pyroscope - block the syscall, not the alert. tetragon and falco don't just detect, they can kill the process at the hook - swap the CPU scheduler at runtime. sched_ext landed in 6.12. valve wrote one for the steam deck the mental model: your kernel now has event listeners. syscalls, kernel functions, packets, cgroups. attach, filter, aggregate into a map, read from userspace the part nobody puts on the landing page: the verifier will reject perfectly correct code and hand you a 400-line register state dump as the explanation. it's like arguing with a compiler that has decided it hates you personally worth it anyway. observability stops being a thing you build into your app and becomes a thing you point at it what's the most cursed thing you've done with it?