What Does NET::ERR_CERT_DATE_INVALID Mean?
NET::ERR_CERT_DATE_INVALID (or SEC_ERROR_EXPIRED_CERTIFICATE in Firefox) is a critical security barrier displayed by web browsers when the SSL/TLS certificate presented by the server has an expiration date that is in the past (or a start date in the future).
For Webmasters: How to Fix It on Your Server
1. Force Immediate ACME / Certbot Renewal
sudo certbot renew --force-renewal
2. Reload Your Web Server
# For Nginx
sudo nginx -t && sudo systemctl reload nginx
# For Apache
sudo apachectl configtest && sudo systemctl reload apache2
3. Ensure Full Chain Is Configured
# Nginx correct configuration:
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
⚡ Never Let Your Certificate Expire Again
Set up automatic email notifications at 30, 14, 7, 3, and 1 days before expiration.
Monitor Your SSL For Free →