Skip to main content

Security fix guide

How to Fix an Outdated TLS Version

Outdated TLS support means your server allows older protocol versions such as TLS 1.0 or TLS 1.1.

Run Full Website Security Scan

What the issue means

Outdated TLS support means your server allows older protocol versions such as TLS 1.0 or TLS 1.1.

Why it matters

Modern TLS configuration reduces downgrade risk and aligns with current browser and compliance expectations.

How to check it

Run a TLS checker or inspect server configuration for enabled protocols.

How to fix it

Disable TLS 1.0 and TLS 1.1, prefer TLS 1.2 and TLS 1.3, and use modern cipher suites.

Configuration examples

Nginx
ssl_protocols TLSv1.2 TLSv1.3;
Apache
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
Cloudflare
Set the minimum TLS version to TLS 1.2 or higher in SSL/TLS settings.

Related fix guides