DNS and SSL aren't really in my wheelhouse more than a rudimentary understanding, I hope what I want to do isn't impossible!
Here's the situation:
- We have an internal domain and DNS servers, let's call it
inside-company.com
- We're migrating from self-signed certs and bought a wildcard DV cert for
*.inside-company.com
-- This is all internal-facing so DV is sufficient
- Most users rely on default search domain and type
application/
or https://application
into their web browsers instead of the FQDN
What seems to happen now to the best of my ability to tell is:
- Browser does DNS query and resolves IP
- Browser loads IP and does SSL name check
- Browser throws up
net::ERR_CERT_COMMON_NAME_INVALID This server could not prove that it is application; its security certificate is from *.inside-company.com.
, I'm assuming because it hasn't re-written the URL in the address bar with the FQDN yet (and indeed the address bar still shows https://application/
at this point)
Can anything be done here? Re-educating users to use FQDN is... not really a viable option. Happens in all browsers I just gave the chrome verbiage for the error.
Also, the reason we got a wildcard cert is because there are hundreds of self-signed certs we're converting, buying one-per-application or even one-per-server would be cost prohibitive.
Thanks!