Knowledge base
1000 FAQs, 500 tutorials and instructional videos. Here, there are only solutions!
Resolve SSL Labs test alerts
This guide explains how to correctly interpret the detailed information provided by Qualys SSL Labs (https://www.ssllabs.com/ssltest/), which can sometimes seem technical or alarming without the appropriate context.
Introduction
- Qualys SSL Labs is a widely used tool for analyzing the SSL/TLS configuration of websites.
- The warnings in their reports are often just technical details that have no impact on the security or SEO of the site.
Multiple certificates in SSL Labs reports
When SSL Labs analyzes a website, it may display several numbered certificates (certificate #1, certificate #2, etc.). This occurs for several reasons:
- Primary certificate (#1): The certificate presented when SNI (Server Name Indication) is used.
- SNI is a TLS extension that allows a server to host multiple SSL certificates for different domains on the same IP address. When a browser connects, it indicates the domain name it wishes to connect to.
- Secondary certificate (#2): The certificate presented when SNI is not used or during a direct connection via IP.
An indication of "No SNI" in certificate #2 is not an error. It simply means that SSL Labs tested what happens when a client connects without providing SNI information. In this case:
- The server serves a fallback certificate (often a generic or preview certificate).
- This situation only concerns very outdated clients that do not support SNI.
- Modern browsers all use SNI and will therefore receive certificate #1.
Certificate Chain Issues
"Chain issues: Incorrect order, Extra certs, Contains anchor"
These warnings do not necessarily mean that the certificate is faulty:
Incorrect order: The intermediate certificates are not presented in the optimal order.Extra certs: Includes unnecessary additional certificates.Contains anchor: The root certificate is included in the chain.
The TLS protocol allows you to omit the root certificate because it is normally already present in the certificate stores of browsers. Including it is not an error, but rather a redundancy.
“Alternative names mismatch”
For the backup certificate (#2), the "MISMATCH" warning is normal because:
- This certificate is designed for a different domain (
preview.infomaniak.website). - It is only displayed when SNI is not used.
- The browser receiving this certificate would identify it as not matching the requested domain, but this does not affect normal connections with SNI.
Regarding SEO concerns:
- Google and other search engines use modern browsers that support SNI.
- They receive certificate #1, which is valid for your domain.
- The warnings regarding certificate #2 do not affect SEO.
- Only issues with the main certificate (#1) could affect SEO.
This configuration is perfectly suited for shared hosting where multiple sites share the same infrastructure, with a preview certificate serving as a fallback solution.
Link to this FAQ: https://faq.infomaniak.com/1569
Has this FAQ been helpful?