1. Home
  2. Companies
  3. Cloudflare
Cloudflare

Cloudflare status: hosting issues and outage reports

No problems detected

If you are having issues, please submit a report below.

Full Outage Map

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.

Problems in the last 24 hours

The graph below depicts the number of Cloudflare reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.

At the moment, we haven't detected any problems at Cloudflare. Are you experiencing issues or an outage? Leave a message in the comments section!

Most Reported Problems

The following are the most recent problems reported by Cloudflare users through our website.

  • 36% Domains (36%)
  • 31% Cloud Services (31%)
  • 17% Hosting (17%)
  • 11% Web Tools (11%)
  • 6% E-mail (6%)

Live Outage Map

The most recent Cloudflare outage reports came from the following cities:

CityProblem TypeReport Time
Manchester Domains 5 days ago
Angers Cloud Services 16 days ago
London Domains 18 days ago
Noida Hosting 1 month ago
Jewar E-mail 1 month ago
Braga Web Tools 1 month ago
Full Outage Map

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:

  • cshperspectives
    Richard Sever (@cshperspectives) reported

    @manuelrivascruz working on solutions to this. the problem as I'm sure you can imagine is like so many sites we are being hammered by LLM bots in addition to all the DDOS attacks, so (again like many others) use services like Cloudflare to ensure human readers maintain access

  • suny_nick
    Nick Sunny (@suny_nick) reported

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

  • jmuh997
    rho (@jmuh997) reported

    stc routing in eastern province is so bad i have to use cloudflare warp to use spotify

  • BiscuitClimpy
    Climpy Biscuit (@BiscuitClimpy) reported

    @EddCoates Contacted @Cloudflare? They might be able to help...

  • Mike_Preston17
    Nicholas Preston (@Mike_Preston17) reported

    @PLOwingPots @DevLeaderCa You really should learn C and C++ to understand the fundamentals, etc. I say this as a C# dev who went C -> C++ -> Java -> C#. You won't appreciate the 'better' language nearly as much if you don't at least suffer from the shortcomings of its successor language. I suffered pointer and stack overflows from C++ and that taught me to not be an idiot with my memory. Rust babies devs too much, imo - that's what (again, imo) led to the Cloudflare outage: too much trust in the compiler and willfully ignoring the dynamic nature of data in production (which NO language can account for).

  • dmsimon
    dmsimon (@dmsimon) reported

    @EddCoates I had the same problem and moved to @Cloudflare and am using pages and workers. Pages is free on a free account for a ridiculous amount of volume. Keep you host running the dB and move the front to CF. I also think it is much better than gh pages.

  • lo_fye
    Derek Martin 🇨🇦 (@lo_fye) reported

    @yashmp2004 Your cache busting and/or expiration is broken. Cloudflare is down. Your hosting’s network connection is shoddy, or oversaturated. A backup or clone process is hammering the disk. There’s a race condition that wasn’t triggered until now. When in doubt, check replication status.

  • sinasanm
    Sina Meraji (@sinasanm) reported

    totally forgot i can replace the scrappy cf onboarding in kimiflare with the new "login with cloudflare" oauth thingy

  • TooTrill4Thiss
    JD (@TooTrill4Thiss) reported

    @BoringBiz_ Every business doesn't need a custom agent. It needs an enterprise plan and a few capable devs who can map it, and deploy agents. building automation that don't rely on agent compute. like hello??? app scripts, compute engine, cloudflare workers. ******** are people doing?

  • javmung
    IJav (@javmung) reported

    @MSU_NW_FANG @MaplestoryU @nexpacetime Also need to test WARP From CLoudflare.. that helps a lot. But most likely is his/her ISP. mine was disconencting a lot, they did reset my NAT, and assigned me a public IP address, and problems are gone.. so routing probably the problem.

  • 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

  • decoded_dev
    Decoded (@decoded_dev) reported

    @EddCoates A lot can be done for free. If you use nginx, page caching helps a lot. Identify query strings that aren't used by your site but are actively being crawled and block them in cloudflare - *?*weirdstring*. This can help block bots that try to bypass the page cache. Use cloudflare to block user agents of bots that you don't need crawling your website. If you put the painful effort of going through your logs now then this problem (your server not responding) will rarely happen in the future. Where are you hosting your site?

  • ankuragrawal420
    Ankur Agrawal (@ankuragrawal420) reported

    @araseb_ The ease of use primarily and native support for nextJs application out of the box with just 1 click. They have been charging people more and more with all the ridiculous upsells. They changed my build configuration to turbo automatically and charged me for build minutes. Thats when I decided to move to Cloudflare and its completely free

  • 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.

  • Dety0
    Dety (@Dety0) reported

    ServiceDesk tier list S: Cloudflare is down A: Password Reset, PC Crashing B: Data Backups C: Phishing Mails D: New User Onboarding, Meeting Room Setup F: Outlook Classic, PRINTERS

  • SidDegen
    SID | Degen (@SidDegen) reported

    i don't buy the "ai search replaces Google" thesis. the data says the opposite is happening. Cloudflare Radar, may 2026: every ai chatbot — ChatGPT, Gemini, Claude, Perplexity — sends 0.29% of global search referrals. Google sends 87.63%. 301-to-1. Anthropic's ClaudeBot crawls 11,122 pages for every human visit it returns vs Google's 5:1. Alphabet Q1 2026 filing: Google search revenue $60.4B, +19% yoy, up from +17% in Q4. ai overviews hit 2.5B monthly users; ai mode crossed 1B. alphabet says ai overviews monetize at rates "similar to traditional search" (june 2026 investor presentation). the kill-google thesis is showing up as negative signal in the actual p&l. Perplexity — the consensus poster child — killed its entire ad business in feb (Financial Times, The Verge). ads generated $20K against $34M revenue. exec quote: "a user would just start doubting everything." a company that can't make advertising work cannot disrupt a $60B/quarter advertising business. the consensus pusher worth countering specifically — @sarahdingwang at a16z, who led Exa's $250M Series C at $2.2B in may. her line: "agents will search the web more than humans this year. soon orders of magnitudes more." historical analog — Netscape 1994-98. the next platform that would reduce windows to "a poorly debugged set of device drivers." 80% share, record ipo. microsoft bundled IE for free. netscape sold to AOL for scrap. the company that captured the value was the one everyone thought netscape would displace — Google, founded 1998 — the services layer above the commodity. counter-position: ai search isn't replacing Google. Google is becoming ai search. standalone players are fighting netscape's war while the incumbent absorbs the tech into a surface 2.5B people already use. investor read: Exa at $2.2B and Perplexity at $22B are priced for a market-share takeover the referral data says isn't happening. the smarter bet is the layer that monetizes the ai-overview expansion Google is driving.

  • Court_Reinland
    Court Reinland (@Court_Reinland) reported

    @EddCoates Cloudflare can help with this, they can tune out a lot of this.

  • 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.

  • pablodecortes
    Pablodecortes (@pablodecortes) reported

    @cramforce Does it support Cloudflare Workers or only Vercel?

  • iam4x
    𝗶𝗮𝗺𝟰𝘅 (🌷,🦈) (@iam4x) reported

    @DegenCT @TheCryptoNexus - Proxy the ui api of hyperliquid through cloudflare to fetch sub-accounts - Then implementing the spot trading with support of sub-accounts

  • heykarenrc
    KarenR (@heykarenrc) reported

    When I built d1-studio, I was still early in my transition from UX to development. At first, I just wanted the simplest stack possible. Something lean. Something affordable. Something I could build with fast. Like many new devs, I started with the familiar stack: Next.js. Supabase. Vercel. AI helping me along the way. Supabase was great to get started. I still like it. But as I built more products, I started noticing the small costs and tradeoffs that you only understand after shipping. Storage. Egress. Deployment limits. The usual “newbie learns the hard way” stuff. That pushed me to look for a stack that fit how I wanted to build. Then I found Cloudflare. Workers. Pages. D1. R2. Queues. Generous free tier. Simple deployment. Close to the edge. I slowly moved more of my projects there and never really looked back. But there was one thing that kept slowing me down: Cloudflare D1 local development. D1 is great, but working with the database locally felt too slow. I didn’t want to keep jumping between CLI commands just to inspect tables, edit rows, run SQL, or check data while building. I also didn’t want a tool that required a long setup. My thinking was simple: The database is already in my Cloudflare project. The wrangler.toml is already there. Why can’t a studio just detect it and work? That became the trigger for D1 Studio. A native database studio for Cloudflare D1. No complicated setup. No extra database connection string. No heavy workflow. Just run it inside your project and start working with your D1 database faster. You can inspect tables, edit data, run SQL, and work with local or remote D1 without fighting the CLI every few minutes. It started as a tool I needed for myself. Now it’s getting used by other Cloudflare developers too. This week it hit 311 weekly downloads. Not a huge number in the grand scheme of things, but for me it means a lot. Because this is the first product I built that truly came from my own pain. Not a random idea. Not a trend. Not something I forced. Just a problem I kept hitting until I finally built the tool I wished existed. That’s been the biggest lesson for me as I move from design into development: The best products are often not born from brainstorming. They come from friction. Something feels slower than it should. Something takes too many steps. Something breaks your flow. And eventually you think: “There has to be a better way.” That’s how D1 Studio started. And seeing people use it for their own Cloudflare projects is still one of the best feelings.

  • makisuo
    Makisuo (@makisuo) reported

    Can anyone @Cloudflare help me with the startup program, I applied back in april and still haven't heard back :(

  • tush_2708
    Tushar Dwivedi (@tush_2708) reported

    @SayantikaSays Try @BSNLCorporate . And I am not joking. It is best if it's available in your area. No BS service. I never heard these lines from BSNL, which I kept hearing from other providers like Jio and Airtel. "We won't give you the router password" "You can't use your own router, even if ours is ******. What do you mean you have a better router and modem? Hou must pay us a subscription for this mesh thing instead" "No, you can't use Google or CloudFlare's DNS, you must use ours. What if it's slow? If you change, how will we snoop on you and inject our advertisements into your browser?" "No, you can't open a port for you. For that, you must buy a static IP from us. Why is a static IP needed to open a port? Who knows. But we won't allow it unless you pay us extra" In the last 3 years, I have only had 2 outages on BSNL, 30-40 minutes max. While on Airtel, I had caught their staff removing my cable from their box and adding a new one for a new connection, and then making me wait till they finally got a new box after a week. They just didn't want to make a new customer wait, so they simply assigned my slot to them. And their customer care and local staff wasn't even ready to accept it, unless I showed the CCTV footage and a video of my cable literally being thrown on the side of their box, not even connected, while they were claiming that there's some backend issue.

  • 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

  • cj_enlighten
    Christopher Johnson (@cj_enlighten) reported

    Vanilla web search in an always-on agent gets blocked. Not a Hermes bug. A structural 2026 problem. Cloudflare and Akamai are aggressive enough now that any general-purpose agent hits the wall. You need Tavily or equivalent. Budget time for it.

  • sulabhpuri
    Sulabh Puri (@sulabhpuri) reported

    A lot of problems with @Cloudflare today.

  • onurardaoz
    Arda (@onurardaoz) reported

    @Cloudflare Warp ui sucks for macs now. Please turn it back.

  • bgonzalesp
    Bernardo Gonzalez (@bgonzalesp) reported

    @CloudflareHelp @Cloudflare how do you expect we can contact support to gain access to my account, if you require to login to send a help request??? It's simple logic... I assume that your really don't care about helping your customers

  • alishteinn
    Aly (@alishteinn) reported

    Most Next.js websites are entirely too slow. I just boosted the Cursor Baku community site performance from 77 to 98. It is deployed on @Cloudflare, and the fixes were incredibly simple. If you want lightning-fast load times, steal these 4 tips: • Resize images to their actual display size before committing • Set minimumCacheTTL in next.config to cache image at the edge • Always set sizes on Next.js <Image> or retina fetches 4× the bytes • Wrap R2 reads with caches.default to serve media from the edge Fast load times build trust. Stop losing users over a slow website.

  • 5Fingertight
    Fingertight (@5Fingertight) reported

    @EddCoates Cloudflare has some decent free tools that can help a lot with this….