Hi @Lucas Peñaloza ,
Thanks for sharing your details.
From your screenshots, this looks like a certificate name mismatch.
The site is being accessed as:
https://befancatalogo.personal.corp
But the certificate configured in IIS appears to be issued to:
catalogo.personal.corp
Those names are different. A certificate can appear valid and still show a browser warning if the hostname in the URL is not included in the certificate. Microsoft’s IIS SSL guidance notes that browsers check the certificate validity period, trusted issuer, and whether the certificate Common Name matches the host header in the request.
Regarding your question about the Common Name, the field you pointed to is the Friendly Name. That is only a local label in Windows/IIS and is not used by the browser to validate the website name.
To check the actual name used by the certificate, open the certificate and look at:
-
Details > Subject
-
Details > Subject Alternative Name (SAN)
If users need to access the site as befancatalogo.personal.corp, then befancatalogo.personal.corp should be included in the certificate, preferably in the Subject Alternative Name (SAN) field.
If both names are required, then the certificate should include both:
-
catalogo.personal.corp
-
befancatalogo.personal.corp
After that, make sure the correct certificate is selected in the IIS HTTPS binding.
If the issue still persists after using a certificate with the correct hostname, then it would be worth checking the IIS binding configuration, such as SNI or whether multiple HTTPS sites are sharing the same IP address and port. But based on what is shown in the screenshots, the name mismatch already explains the browser warning.
If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance provide feedback.