All posts
Networking3 min readWatchFor Team

How to Never Get Caught by an Expired SSL Certificate

An expired TLS certificate takes your whole site offline with a scary red warning — and it's 100% preventable. Here's why certificates expire, what it costs, and how to make sure it never catches you.

How to Never Get Caught by an Expired SSL Certificate

It's Saturday morning. Your site is fine on Friday night, but now every visitor is greeted by a full-screen red warning: "Your connection is not private." No one can get in. Nothing changed in your code. What happened?

Your SSL/TLS certificate expired — and browsers, doing exactly their job, slammed the door. It's one of the most common outages on the internet, and also one of the most embarrassing, because it's entirely preventable with about five minutes of setup.

What a certificate actually is (quickly)

When someone visits https://yoursite.com, your server presents a TLS certificate — a digital document that proves "I really am yoursite.com" and lets the connection be encrypted (the padlock in the address bar).

Crucially, every certificate has an expiry date. Past it, browsers stop trusting it and block the connection with a warning that looks, to a normal visitor, exactly like your site got hacked.

Why certificates expire on purpose

Expiry isn't a bug — it's a security feature. Short lifetimes limit the damage if a certificate's private key is ever stolen. And lifetimes keep getting shorter: what used to be a year or more is now commonly 90 days, with the industry steadily moving toward even shorter windows.

The catch: shorter lifetimes mean renewal happens far more often. "I'll remember to renew it next year" doesn't work when it expires four times a year. Renewal has to be automatic — and verified.

What it costs you

An expired certificate isn't a soft failure. It's a hard, total one:

ImpactWhy it hurts
Total outageBrowsers block everyone — customers, APIs, integrations.
Looks like a hackThe warning screams "danger" to non-technical visitors.
APIs break silentlyOther systems calling your API just start failing.
Trust damage"Is this site safe?" is a bad question to make customers ask.

How it still catches people (even with auto-renew)

"But I have auto-renewal!" Famous last words. Auto-renew fails more often than you'd think:

  • The renewal cron job silently died months ago and no one noticed.
  • The domain validation step broke (a DNS change, a moved file).
  • The new cert renewed but wasn't deployed to every server / load balancer.
  • A wildcard or multi-domain cert covers fewer names than you assumed.
  • It renewed on one box but a second server still serves the old one.

The common thread: renewal is invisible until it fails, and by then it's an outage. Automation without verification is just hope.

How to never get caught

A simple two-layer approach makes expiry a non-event:

  1. Automate renewal. Use automatic certificate management (e.g. ACME / Let's Encrypt-style tooling) so renewal happens without a human.
  2. Monitor expiry independently. Have something check the actual certificate your server is serving and alert you well before it expires — typically at 30 and 14 days out. This is the safety net that catches a failed auto-renewal while you still have weeks to fix it calmly.

That second layer is the one people skip — and it's the one that saves you. It watches the real-world result, not the automation you hope is running.

A quick checklist

DoWhy
Alert at 30 and 14 days before expiryCalm fix, not a Saturday fire drill
Check the cert your server actually servesCatches "renewed but not deployed"
Monitor every endpoint and subdomainWildcards and second servers hide gaps
Verify the full chain, not just the leafIncomplete chains fail in some clients

The bottom line

PrincipleIn one line
Expiry is inevitableCerts are short-lived by design — and getting shorter.
Auto-renew isn't enoughAutomation fails silently; verify the result.
Monitor independentlyAlert weeks ahead, on the cert actually being served.

An expired certificate is the rare outage that's both totally predictable and totally preventable. Set up auto-renewal, add an independent expiry monitor, and that Saturday-morning red screen simply never happens.

You can check any site's certificate right now with the free SSL checker, and set up always-on expiry alerts with our certificate monitoring guide.

Share this article