Verifies your TLS cert is served with the full intermediate chain — the #1 cause of "insecure connection" errors on Android and older curl.
Lemwatch walks the certificate chain your server sends. Missing intermediates fail the check even if the browser you tested in worked.
Site details → Security → SSL → Chain.
cat cert.pem intermediate.pem > fullchain.pem).openssl s_client -connect yourdomain.com:443 -showcerts.Chrome caches missing intermediates from prior visits. Android and curl don't.
Yes if you use fullchain.pem, not cert.pem alone.