1. Home
  2. Companies
  3. Cloudflare
  4. Outage Map
Cloudflare

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

Loading map, please wait...

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:

Less
More
Check Current Status

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
Manchester, England 1
Angers, Pays de la Loire 1
London, England 2
Noida, UP 3
Jewar, UP 1
Braga, Braga 1
Paris, Île-de-France 2
Prievidza, Nitriansky 1
Farmers Branch, TX 1
Helsinki, Uusimaa 1
Crisfield, MD 2
Nanaimo, BC 1
New York City, NY 1
Istanbul, Istanbul 1
Greater Noida, UP 2
Augsburg, Bavaria 1
Bengaluru, KA 1
Montataire, Hauts-de-France 1
Attleborough, England 1
Colima, COL 1
Leuven, Flanders 1
Check Current Status

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:

  • firtoz
    firtoz (@firtoz) reported

    @EddCoates Would/does Cloudflare help?

  • vega_yaa
    sco2084 (@vega_yaa) reported

    @rohit_jsfreaky What if I subscribe to private DNS servers ..... let's say cloudflare? Will that help? I mean I'll put those DNS swrvers in my laptops TCP/IP config with ISP provider for my home internet.

  • elie2222
    Elie Steinbock ~ getinboxzero.com (@elie2222) reported

    Got a Vercel bill down from $4,200/mo to $120/mo. Some notes: - This is a free B2C product that went somewhat viral. - To get cost down I first optimised Vercel itself. Better caching. Move images to Hetzner / Cloudflare / AWS. - I also switched off server rendering. This product didn't need it. Moved everything to SWR. These changes were needed for better caching. - The big drop at the end is because I moved a lot to a Hono server on Hetzner. - I reused an existing Hetzner server so there were no extra costs there. But even if using a new one, the extra cost would have been only another ~$30/mo. - For B2B products it's usually not worth worrying about. This product had 15k+ signups in the last month. If you have thousands of paying customers, you're making 7 figures per year and a few k to Vercel isn't critical. This product was free, so it was painful to be burning dollars on it. - No need to waste money you don't need to, but the peace of mind with Vercel handling any scale, and you having zero DevOps is a major plus. - You can always make the adjustments I did. It's easy with AI. You're not locked in forever. - The switch I made to Hono was a simple one. It doesn't have load balancing. The server should hold up, but for a B2B SaaS I'd invest more time in a stable setup (which would also cost more time and money). - Vercel makes less sense for a B2C app that goes somewhat viral. It's still my go to every time, but need to be ready to move if you do see some real growth. - The product still uses Vercel. But many of GET requests now go to Hono. PS, this isn't for @inboxzero_ai which is prosumer/B2B focused and isn't free (other than 7 day free trial).

  • witch_the_snep
    That Boosted Snep 🔜 Megaplex (@witch_the_snep) reported

    @joesmith1457 @DoorDash_Help It looks like its cloudflare thats having issue. That who hosts doordash’s website

  • AutismCapital
    Autism Capital 🧩 (@AutismCapital) reported

    @jdoliner Sorry, can't do your scan today, Cloudflare is down.

  • OttoLorner
    Otto Lorner (@OttoLorner) reported

    Best OpenClaw use case is making it an admin in AWS, Google Cloud, Cloudflare, wherever and never having to use their horrendous UIs again. Cloud consultant on tap.

  • specialkdelslay
    special k | CEO of stressed out era (@specialkdelslay) reported

    @HeadmasterDuck We have cloudflare pro acc which does mitigate some of this. The cloudflare dependency everyone has is a problem tho

  • suny_nick
    Nick Sunny (@suny_nick) reported

    @EddCoates I had similar issues. If you use Cloudflare, you can do what I did

  • FardeemM
    Fardeem (@FardeemM) reported

    If you're on your way to building a billion dollar company that involves a web app, here are some of my notes on architecting the frontend. if you don't do this, it's probably fine but one day you'll hire someone to fix it but truly that person could be doing some other higher value thing if you make some key optimizations on day 1 you don't even have to learn anything you're gonna tell your agents to do it anyways! okay here it goes: - Make your server code generate a openapi spec which then generates all the relevant client side code. Never do this by hand. Typing backend types instead of generating them should be banned - You need to make a decision on how the client talks to the backend. rest/graphql works in which case please just use tanstack query. other libraries will look similar but tanstack query truly is goated. - if you want linear style sync setups or offline mode, think about this HARD and architect it from day 1. Bolting this on later is so tedious. - People like using plain react router but things have gotten a lot better since then. Try their new framework mode or just even use tanstack router. Use route data loaders. - If you store a lot of state in query params, make that a first class citizen and make sure its type safe. use nuqs or tanstack query. - Most apps just need a single state management situation for server state and thats it. If you have other bespoke needs, i have quite like zustand and xstate/store. - If you have a super interactive app where things come in and out of view, theres a lot of frontend state to maintain, music is playing and what not, lock in and learn xstate. Trust me if you wanna keep ur sanity, you need to model ur frontend as a state machine otherwise you're gonna be deep in useEffect hell - React compiler is here my friends, the days of useMemo and useCallback are gone. Update your priors accordingly - Tailwind is easy and fun but makes it really hard to maintain a large app with consistent styling. You need a "agent-first design system/component library" but maybe this is a rant for another day - Don't be afraid to hack your routing library to fit your needs more closely. A lot of apps have "drawers" to show additional info. You should 100% be able to say "here's a route, make it a drawer" and everything should be handled from there. - Managing loading and error states using isPending and isError is madness. Lean into Suspense and ErrorBoundary. - Figuring out a blessed path for websockets and SSE on day 1 i think will pay dividends in the long term if you're building anything AI related. - If you're building a SPA, don't use next.js. it literally makes no sense. Why would you do this. - Definitely deploy on Cloudflare or vercel. There are other services but trust, there have weird missing features. - Assuming you build something people want, the next job is to build the factory so it can efficiently build the thing. Act accordingly.

  • thelegendoflivz
    🔱Lady Livz🔱 (@thelegendoflivz) reported

    I just know my dad will be pissed tomorrow if it actually is a programming error. If he wasn't in a different division he would probably drive over and fix their ****. I keep telling him he should just apply to Cloudflare or something because this kind of **** drives him bananas

  • kocer_eth
    kocer (@kocer_eth) reported

    7 FREE AI API/TOOL TIERS YOU CAN USE TODAY BEFORE BUYING ANOTHER AI SUBSCRIPTION If you build agents, bots, research tools or small automations, start with this stack. 1. OpenRouter Use it as the router. It exposes free-priced models in the model list, so you can test routing before paying per token. 2. Google AI Studio / Gemini API Good for prototypes, evals, long-context tests, and agent experiments. Check the free tier before you burn paid credits elsewhere. 3. Cloudflare Workers AI Best when you want inference close to your app. The useful part is not just “free AI” — it sits inside the same place you can deploy Workers. 4. GroqCloud Use it when speed matters. Great for bots, voice loops, extraction, and any workflow where slow responses kill the demo. 5. GitHub Models Best for prototyping inside the GitHub flow. If your code, prompts, and tests already live there, this removes friction. 6. Tavily Research/search API for agents. Free plan shows 1,000 API credits/month, useful for browsing agents and research bots. 7. ElevenLabs Voice layer. Free plan shows 10k credits/month, enough to test narration, agents with voice, and demo content. > My rule: never build production on a free tier first. > Use free access to test: - latency - rate limits - output quality - tool calling fit - billing behavior - whether your agent actually needs the premium model Then pay only for the part that survives real usage. Most people skip this and buy 3 subscriptions before they even know which API call matters.

  • nikhildp
    Nikhil Agarwal (@nikhildp) reported

    @dinasaur_404 @Cloudflare Yes looking for billing cap. How do you test dynamic workers as well as dynamic workflows in local dev? We had a disastrous outcome of losing $800 because the deployed code ran into infinite loop using dynamic workflow. Support team was not at all helpful.

  • imhaoyi
    Yi (@imhaoyi) reported

    Oracle’s 4-core 24GB setup for Hermes was overkill and not worth it. Just migrated everything over to Google Cloud’s free tier today — a basic 2 vCPU, 1GB RAM VM. The standard network tier gives 200GB egress per month (no CDN or Cloudflare needed). More than enough. Only three regions offer free VMs. Picked us-west1 since it’s closest to Asia. e2-micro machine type, standard persistent disk up to 30GB, network tier set to standard for the bandwidth. Allow HTTP/HTTPS in the firewall, disable disk protection, and skip Ops Agent — those two are paid features. Migration was straightforward. Installed Hermes on the new VM, packed up what I needed from the old server, uploaded and extracted it, then ran hermes doctor and hermes setup. That’s it.

  • AjayCodeWiz
    Ajay (@AjayCodeWiz) reported

    @VanillaCache I just bought max plan. Using it via vs code extension. Does the web version covers everything. Mobile web version puts things in container. And running the dev server accessing is so difficult. Cloudflare and ngrok not working. Had to push it to vercel which deploys all the branches including the branch the claude is working on. But still slow like building takes time

  • BlockedPaths
    BlockedPath (@BlockedPaths) reported

    @Howaboua You have to install their multiple mcp servers for that, check out the docs. I’ve been ******* with it for a few days and ported it into just about every harness. The timeout out errors and it randomly spitting out Chinese is funny. I did jailbreak that **** though via cloudflare

Check Current Status