Mobile browsers security error

Hello,

I installed the certificates for my domain name and it works completely fine in my browser. When I load the HTTPS version in any mobile browser though, I still get a security error (This connection is untrusted). Can I do something about it or is it something I cannot help yet?

Big thanks to LetsEncrypt, though, keep up the good work!

Hey,

you must also send the certificate chain.

e.G. for Apache:

SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/example.com/fullchain.pem

Then it will work on mobile devices :wink:

1 Like

Thank you very very much! You just saved my day :smiley:

Wow great! Thank you so much!

For nginx, it will be

ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;

instead of

ssl_certificate /etc/letsencrypt/live/example.com/cert.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;

2 Likes

Glad to see it worked out for youI didn’t include the privkey myself, though so not sure if you actually need it. (all credit to @jpbe)