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
New York City, NY 3
Los Angeles, CA 1
Paris, Île-de-France 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:

  • mattragudo
    Matt Ragudo (@mattragudo) reported

    @Bsoutherland23 So right now there really isn’t a CEO agent. Like one that makes decisions on everything. Most agents rely on scope. For example, I have all of my website content work, and automated trading research and content handled by agents. A group of agents. My websites (I have 6 different that I’m focusing on now): Research 3x a week, find stuff interesting based on what I’ve told it plus what’s trending and what’s showing up in socials/news. Reasoning agent then looks at what’s worth publishing based on what’s out there and what my ideal client would want to read that needs to be curated further. Sends that list to my writers. Writer agents draft based on the voice and guidelines that I have given it. Research check agents review the articles based on what we are able to say, verify claims and statements and look up references and links them. Returns this to the writer if there are any issues. Researcher waits for confirmation from writer. Researcher, once done, sends it to a proof reader Proofreader, who further checks one last time for consistency, now also checks for publication rules and makes sure it’s compliant with the verticals. Lastly, a poster with posting credentials will push it to cloudflare to post. All of this is then reviewed monthly for any hold ups in the process by a loop operator whose job is to make sure I (Matt), need not be bothered and that the content is being posted and analytics are doing well. Analytics, which are reviewed by another “Agent system”.

  • MaranathaJohn30
    JohnTheRevelator ✝️🥩 (@MaranathaJohn30) reported

    Is there a worse service than @Cloudflare? It's pretty much total garbage, every ******* time.

  • sdusteric
    Eric Lee (@sdusteric) reported

    Day 2 of building my own epub converter and reader. Adding Astryx component so UI stays consistent. In AI world, it's easy to create but hard to stay consistent. Also fixing issues for some PDFs not being able to convert. I'm trying to do thing a bit different now, or more like forcing myself. I know i need to release early but always stuck on needing it to be perfect which eventually takes long time and I lose interest. Waste of time and energy. For now it's all local, no account, no upload. I will buy a domain soon and let people play around in few days. I will have basic analytics from Cloudflare just to see the interests and we will see what happens next.

  • mikeinsoftware
    Mike in’ Software (@mikeinsoftware) reported

    @soham_nayak04 @marclou How can an analytics service break after 470 users? And why note have a local one on your server + use cloudflare webstats

  • maddada
    M. Yahia - ghostex.dev (@maddada) reported

    @robinebers @BehEvans @Cloudflare I default to cloudflare currently for most of my projects, last I looked there wasn't something as all-in-one and as competitive on price (for non-enterprise) Way easier to use than AWS + free or much cheaper than others like railway/vercel/netlify/etc. You get domains/dns/free protection and a bunch of stuff in 1 dashboard. While if you use some of the others you'd have to set up cloudflare separately (bit of a hassle). As long as you're not "Enterprise" they offer very generous prices. Also if you can make your app run on workers then it's one of the cheapest ways to host/scale an app since they charge you for active CPU milliseconds. I'm sorry for any mistakes or bad explanation, wrote this quick of the top of my head.

  • jerephil
    Jeremy W. Phillips (@jerephil) reported

    Somehow Cloudflare keeps releasing cool features that I never hear about. Am I just missing their marketing or something? In related news, Cloudflare email routing is pretty nifty.

  • Ud_84
    Ud (@Ud_84) reported

    Cloudflare blocks or challenges bad requests from hitting my website. #cloudflare

  • oojoshua
    Joshua Montgomery (@oojoshua) reported

    @HawaiianTel - You are dropping all traffic to Cloudflare. Just Cloudflare, but that's 18% of the Internet. You've been dropping it on and off for a week. Can you stabilize it so we can have reliable Internet? Been a week of no power and this is adding to the problems here.

  • _can1357
    Can Bölük (@_can1357) reported

    @cafkafk i like how cloudflare came up with this signed requests proposal and all that and literally no one gave a **** they literally just make a Claude-User request from a random AWS server, so can you kekw

  • michaelflux
    Michael Flux (@michaelflux) reported

    @levelsio The actual stack is intentionally boring: - Structured error on every failure - One JSON log line per console.error / warn with a 32-hex traceId - Cloudflare Observability (logs + traces) enabled on every Worker - Frontend is also Workers (SvelteKit), so client errors travel the same pipe - No external SDK. Just Cloudflare’s native observability + application-level correlation.

  • KentonVarda
    Kenton Varda (@KentonVarda) reported

    @m0hilll @thdxr @arnvbnsl Reusing isolates keeps costs down and lets us bill for CPU time only instead of total request duration. Vercel built Fluid Compute to accomplish the same thing -- explicitly getting away from Lambda's inefficient one-instance-per-request model. That said, we (Cloudflare) have some cool (though long-term) stuff in the works to make it possible for every request to have its own isolate, without blowing up memory usage... deep V8 changes involved.

  • anurag_gharat
    Anurag (@anurag_gharat) reported

    System Design Essentials #19 What is a CDN? Imagine your website is hosted in Mumbai and a user from New York requests your website. The request has to physically travel across the network to reach your hosted server, and then the same for the response. This adds latency. The site will be faster to load up for the user in India but slower for anyone outside of India. CDN, which stands for Content Delivery Network, is a network of geographically distributed servers that cache and deliver your content from a location physically closer to the user instead of the request travelling back to the origin server. How does it work? The origin server is the actual server where all the real content lives Content gets cached on Edge Servers all across the world. Static content like CSS, JS, HTML, images gets cached on these edge servers and served through them. Every user request is routed to the nearest Edge server. In case of cache hit -> return immediately In case of a cache miss -> get from the origin server and create a copy on the edge server, and return the response CDNs are best suited for static or infrequently changing content — not real-time, highly dynamic data like a live bank balance. Common CDN providers: Cloudflare, Amazon CloudFront

  • WorldTechRsrch
    World Tech Research (@WorldTechRsrch) reported

    Cloudflare $NET rose 5.10% while AI hardware slid. The same direction repeated all week. Company-specific catalysts alone cannot fully explain the move. Cloudflare had raised revenue guidance and expectations for platform growth as non-human AI traffic increased. Oracle rose 3.10% after the U.S. Department of Veterans Affairs increased the ceiling on its Oracle Health electronic health record modernization contract by $17 billion, to about $27 billion. Palantir +3.44% Palo Alto Networks +2.38% Salesforce +1.82% Only ServiceNow fell, down 0.98%. Enterprise software names mostly moved together that day. Each company clearly had its own catalyst. The key is that enterprise software rose whenever AI hardware fell, a pattern that repeated throughout the week. This looks more like long-short flows between hardware and software baskets than a new conclusion about AI demand.

  • nickgraynews
    Nick Gray (@nickgraynews) reported

    @jonathan_wilke Migrate to Cloudflare please 🙏 you won’t have these issues

  • pobidowski
    Piotr Obidowski (@pobidowski) reported

    @DerekatQuango @jonathan_wilke @vercel I had the same issue on Vercel with my app. Couple customers from USA (spectrum provider) reported me about insecure connection. Turns out Spectrum company marked a lot of Vercel ips as insecure. Running proxy via Cloudflare fixed the issue.

Check Current Status