Two certificates showing in ssl labs for a wildcard domain cert

My colleague installed a wildcard SSL cert for his domain neveah.art, and another at angelluc.nl .
The sites are working but the SSL test at ssl labs lists an extra certificate for neveah.art which is registered for the domain *.angelluc.nl .
See certificate 2 on the list:
https://www.ssllabs.com/ssltest/analyze.html?d=www.neveah.art

However, when i run certbot certificates there is only one entry for *.angelluc.nl
I cannot see any reason why nginx would be serving the second one.

It’s the default certificate that is used by the server in the absence of https://en.wikipedia.org/wiki/Server_Name_Indication support and when multiple websites with SSL certificates are hosted on a single IP address.

Since SNI is supported by every client and server out there, you can ignore it. It’s very normal.

If you look through the output of nginx -T | grep -i ssl_certificate, you’ll probably find it referenced somewhere by another virtualhost.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.