Submitting the form below will ensure a prompt response from us.
This error occurs when the browser does not trust the SSL/TLS certificate of a website.
📌 Cause: The website’s SSL certificate is expired or self-signed.
✅ Fix:
📌 Cause: Some SSL certificates require intermediate certificates to be trusted.
✅ Fix:
For Nginx: Add the fullchain.pem:
nginx
ssl_certificate /etc/ssl/certs/fullchain.pem;
ssl_certificate_key /etc/ssl/private/privkey.pem;
For Apache: Use the correct SSLCertificateChainFile:
apache
SSLCertificateFile /etc/ssl/certs/fullchain.pem
SSLCertificateKeyFile /etc/ssl/private/privkey.pem
📌 Cause: The certificate is not issued by a trusted CA.
✅ Fix (For Local Development):
Generate a valid local SSL certificate:
sh
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes
📌 Cause: Outdated cache or incorrect system date.
✅ Fix:
📌 Cause: Some security software intercepts SSL connections.
✅ Fix:
📌 Cause: Incorrect SSL settings in server configuration.
✅ Fix:
1️⃣ Try in Incognito Mode.
2️⃣ Restart Router & PC.
3️⃣ Try a different browser.
4️⃣ Disable extensions & antivirus temporarily.
✔ Renew/install a valid SSL certificate.
✔ Check for missing intermediate certificates.
✔ Ignore SSL in localhost development.
✔ Clear cache & correct system date.
✔ Disable antivirus HTTPS scanning.
Submitting the form below will ensure a prompt response from us.