Error Encyclopedia

ERR_SSL_PROTOCOL_ERROR Error

Fix 'ERR_SSL_PROTOCOL_ERROR' errors in Chrome and browsers. Learn how SSL/TLS handshake failures happen and how to fix protocol mismatches.

What Does This Error Mean?

The ERR_SSL_PROTOCOL_ERROR means the browser and server could not establish a secure SSL/TLS connection due to a protocol mismatch or handshake failure. This occurs when they cannot agree on a common SSL/TLS protocol version or cipher suite.

Common Causes

1

Server only supports outdated SSL protocols (SSLv2, SSLv3) that modern browsers reject

2

Browser only supports TLS 1.2+ but server requires an older protocol

3

Server misconfiguration — no common cipher suite with the client

4

Self-signed or invalid certificate causing handshake abort

5

Middlebox or proxy intercepting and corrupting the SSL handshake

6

System date/time is incorrect, causing certificate validation to fail

How to Fix It

Check SSL protocol configuration

Ensure the server supports modern TLS protocols (TLS 1.2 and 1.3).

# Nginx: configure TLS versions
server {
  listen 443 ssl;
  ssl_protocols TLSv1.2 TLSv1.3;  # Disable SSLv3, TLSv1, TLSv1.1
  ssl_ciphers HIGH:!aNULL:!MD5;
  ssl_prefer_server_ciphers on;
}

# Test SSL configuration
curl -I https://example.com --tlsv1.2
openssl s_client -connect example.com:443 -tls1_2

Verify SSL certificate

Check that the certificate is valid, not expired, and properly installed.

# Check certificate details
echo | openssl s_client -servername example.com -connect example.com:443 2>/dev/null | openssl x509 -noout -dates -subject -issuer

# Verify certificate chain
openssl verify -CAfile ca-cert.pem server-cert.pem

Fix system clock

An incorrect system clock causes SSL certificate validation failure.

# Windows: sync time
w32tm /resync

# Linux
sudo timedatectl set-ntp true

# macOS
sudo sntp -sS time.apple.com

Related Tools

Use these tools to debug and fix this error:

Related Errors

Other common errors in this category: