4
2
I have a self-generated CA, and a generated certificate. The certificate is valid:
» openssl verify -verbose -x509_strict -CAfile rootCA.pem mysite.bundle.crt
mysite.bundle.crt: OK
The root CA is installed in my system (Ubuntu 16.04), and curl is able to validate the cert:
curl https://mysite
No complains here.
I can verify the cert chain in the running site, and everything seems ok, including the SAN entries:
» openssl s_client -showcerts -servername mysite -connect mysite:443 </dev/null 2> /dev/null | openssl x509 -noout -text | grep DNS:
DNS:mysite
But Chrome still complains. What could be the reason?
EDIT
Adding screenshot
Chrome usually shows a specific error code. Can you provide it? – user1686 – 2018-03-20T15:23:04.973
@grawity there is no error code per se, but some details. I have added a screenshot. I can add more if needed. – dangonfast – 2018-03-20T15:30:42.907