Live Status Check

Is Cloudflare Down?

Real-time status check for Cloudflare. See if it's just you or everyone experiencing issues.

🔄
Checking Cloudflare...
Testing connection to www.cloudflare.com
https://www.cloudflare.com ↗

About Cloudflare

Cloudflare provides CDN, DDoS protection, DNS, and web application firewall services protecting millions of websites worldwide.

Category: Services  |  Website: www.cloudflare.com

What to Do If Cloudflare Is Down

01
Wait a few minutes and try again. Most outages are resolved within 5-15 minutes.
02
Check the official status page or social media accounts for outage announcements.
03
Try accessing from a different network, VPN, or device to rule out local issues.
04
Clear your browser cache and DNS cache with ipconfig /flushdns or sudo systemd-resolve --flush-caches.
05
Try a different DNS resolver like 1.1.1.1 (Cloudflare) or 8.8.8.8 (Google).
06
Check DownDetector for community reports about Cloudflare.

Frequently Asked Questions

We attempt to load a resource from Cloudflare directly from your browser. If the resource loads successfully, the service is up. If it fails, it may be down or blocking cross-origin requests. This is a client-side check from your location.
Some websites block cross-origin resource loading for security. In these cases, our check may report "unreachable" even though the site is functioning. Try clicking the direct link to verify.
Cloudflare is a services service. Visit their website at www.cloudflare.com for current pricing and availability information.
The status is checked in real-time each time you visit this page. Click "Recheck Now" to run a fresh check. The result reflects reachability from your current network location.

Cloudflare in depth — what you need to know

Cloudflare provides CDN, DDoS protection, DNS, web application firewall, Workers (serverless edge compute), R2 (object storage), Pages (static site hosting), Tunnel (zero-trust connectivity), and many other internet infrastructure services. It sits in front of millions of websites, processing traffic at edge locations worldwide. When Cloudflare has issues, the impact is immediately visible across a huge fraction of the internet.

Cloudflare outages take several patterns: regional issues (specific edge locations or geographic regions affected), component-specific outages (DNS works but Workers fails, or CDN works but WAF degrades), configuration-related issues (a problematic config push causes errors at edge), and rarely global outages affecting the core platform. The 2022 and 2023 incidents demonstrated how widespread the impact can be when core systems fail.

For status verification, cloudflarestatus.com is the canonical source — shows per-region and per-component status. The @CloudflareStatus Twitter account posts updates. For developers, the Cloudflare blog typically publishes detailed post-mortems for major incidents within days.

Five real-world scenarios involving Cloudflare

Web hosting / SaaS uptime monitoring

Sites behind Cloudflare are affected by Cloudflare outages. During incidents, status pages and customer communication need to happen via channels independent of your own site (Twitter, secondary status page hosted elsewhere) so users can find updates even when your main site is unreachable.

DNS reliability

Cloudflare DNS (1.1.1.1 public resolver, plus authoritative DNS for hosted domains) is widely used. Public resolver outages affect home/business users using 1.1.1.1; authoritative DNS outages affect domain resolution for sites hosted on Cloudflare DNS. Have backup resolver configured for resolution; have backup authoritative nameserver configured for hosted domains.

Workers / edge function deployments

Cloudflare Workers run at edge. Worker outages can affect the application logic served by the worker — different from origin/CDN issues. Have fallback behaviour (e.g. serve cached or static content if Workers fail) coded into your edge logic.

Email security via Cloudflare

Cloudflare's email security products (Area 1 / Cloudflare Email Security) protect inbound mail. Outages here can delay or drop mail. Have backup mail security paths or accept temporary unprotected mail flow during outages — better than losing mail entirely.

Zero trust / Cloudflare Tunnel for internal services

Cloudflare Tunnel provides outbound-only connections from internal services to Cloudflare edge — eliminates need for inbound firewall holes. When Cloudflare is down, internal services accessed this way are unreachable. Have backup VPN access for critical internal services.

Common mistakes & edge cases

Hiding origin IP without backup access path

Hiding origin IP from public DNS is good security but creates total dependency on Cloudflare. Have a documented mechanism to access origin directly during Cloudflare outages — even if normally firewalled to Cloudflare IPs, an emergency procedure to allow direct admin access matters.

Communicating outages only through your own site

If your site is behind Cloudflare and Cloudflare is down, your status page is also down. Users have no way to find updates. Maintain a status page on a different host (status.io, Statuspage.io, GitHub Pages outside Cloudflare) for incident communication.

Relying entirely on 1.1.1.1 for DNS resolution

For client devices, having only 1.1.1.1 configured means Cloudflare DNS outages break all DNS resolution. Configure secondary resolver (8.8.8.8, Quad9 9.9.9.9) so Cloudflare issues do not break browsing entirely.

Complex Workers logic without graceful degradation

When Workers code throws errors or hits rate limits during edge issues, the user-facing impact depends on whether your code degrades gracefully. Always include error handling that falls back to serving cached/static content when Workers fail.

WAF rules too aggressive without monitoring

During Cloudflare outages or WAF rule push issues, overly-aggressive WAF rules can block legitimate traffic. Keep WAF in monitoring mode for new rules until verified, alert on unusual block-rate spikes, have a documented fast-disable procedure for problematic rules.

Not understanding which Cloudflare component is affected

Cloudflare's component-level status page distinguishes DNS, CDN, WAF, Workers, R2, etc. Knowing which is affected determines what mitigation applies. "Cloudflare is down" without knowing which component is too vague to act on.

Frequently Asked Questions about Cloudflare

Use the live checker above to test reachability. For per-component and per-region status (DNS, CDN, WAF, Workers, R2, Pages each separately tracked), check cloudflarestatus.com. For widespread outages, the @CloudflareStatus Twitter account posts updates within minutes.
Cloudflare is an internet infrastructure company providing CDN, DDoS protection, DNS, web application firewall, edge serverless (Workers), object storage (R2), zero-trust connectivity (Tunnel), and many other services. Sits in front of millions of websites globally. Provides the 1.1.1.1 public DNS resolver as a free service.
If your site is behind Cloudflare proxy (orange cloud icon in DNS settings), all traffic flows through Cloudflare. When Cloudflare edge is down for users in their region, your site is unreachable for them. Mitigations: have alternative DNS records pointing direct to origin (with proper firewall rules), have a status page hosted independently, communicate via Twitter/email during outages.
If you control the DNS, you can temporarily change records to point direct to origin IP (turning off the Cloudflare proxy). Risks: loses DDoS protection, exposes origin IP, may bypass WAF rules. Plan in advance: have a documented "emergency direct-to-origin" DNS configuration ready, and decide your tolerance for the security tradeoff during outages.
Proxy mode (orange cloud): traffic flows user → Cloudflare → origin. Cloudflare provides CDN, WAF, DDoS protection. DNS-only mode (grey cloud): Cloudflare just answers DNS, traffic flows direct to origin. No Cloudflare protection but no Cloudflare dependency for actual traffic.
Yes — configure secondary nameservers at a different DNS provider (Route 53, Google Cloud DNS, NS1) with the same records. If Cloudflare DNS goes down, secondary nameservers continue answering. Most domain registrars support multiple nameservers in your domain configuration.
Serverless compute that runs at Cloudflare's edge locations — JavaScript or WebAssembly code that executes close to the user. Used for personalisation, A/B testing, edge caching logic, request routing. When Workers is down, your edge logic does not run. Always include graceful fallback (serve cached/static content) for Workers failure cases.
All major CDNs (Cloudflare, Akamai, Fastly, AWS CloudFront, Google Cloud CDN) have occasional outages. Cloudflare's scale and product breadth means outages are highly visible. Multi-CDN strategies (using two CDN providers with traffic split) provide redundancy but add complexity and cost; usually only justified for very high-uptime sites.
Communicate to users via channels independent of your Cloudflare-fronted site (Twitter, email list, status page hosted elsewhere). Monitor cloudflarestatus.com for updates. If outage extends beyond your tolerance, consider temporary direct-to-origin DNS as documented in your incident playbook. Most Cloudflare incidents resolve within minutes to hours; full incident resolution and post-mortems typically follow within days.
Three preparations: (1) status page hosted on infrastructure independent of Cloudflare, (2) documented emergency DNS-failover procedure to direct-to-origin, (3) communication channels (Twitter, email, etc.) ready for incident communication. Test the failover procedure periodically; do not first attempt it during a real incident.