What an expired certificate breaks
Every TLS certificate has a fixed validity window. Once it passes the expiry date, browsers stop trusting it and show a full-page security warning - NET::ERR_CERT_DATE_INVALID in Chrome - that most visitors will not click through. To them your site is simply down.
The certificate is still installed; it is just out of date. Fixing it means issuing a fresh one and installing that, not repairing the old file.
Renew it now
The fastest path depends on how the certificate was issued:
- If you use a host or CDN with managed TLS (Cloudflare, most modern platforms), the renewal is automatic - a lapse usually means the domain moved or the setting was turned off, so re-check that TLS is enabled for the domain.
- If you use Let's Encrypt with certbot, run the renewal and reload the server: certbot renew then reload nginx or apache.
- If you bought the certificate from a CA, log in, renew or re-issue it, then install the new certificate and its intermediate chain on the server.
- Reload the web server so it serves the new certificate, not the cached old one.
After reloading, load the site in a fresh private window - a stale browser tab can keep showing the old error even after the fix is live.
Send the full chain
A common trap: the new certificate is valid but the server does not send the intermediate certificate that links it to a trusted root. Desktop browsers often paper over this, but many mobile clients and API callers do not, so it looks fixed on your machine and broken for others.
Install the full chain (your certificate plus the intermediates your CA provides) and confirm a scan reports a complete, trusted chain.
Never let it expire again
Manual renewal is what causes outages. Switch to automated issuance - Let's Encrypt via certbot or an ACME client, or a host that manages TLS for you - so certificates renew weeks before they expire without anyone remembering.
As a backstop, set a calendar reminder two weeks ahead of the expiry date, or watch the domain so you get an email while there is still time to act.