Why does this page give a handshake error even though I have certificates?

What is the name of the domain?

uk.blocksin.net

What is the error number?

525

What is the error message?

SSL handshake failed

What is the issue you’re encountering

The website fails ssl handshae

What steps have you taken to resolve the issue?

I have added certificates to the server and put an nginx listener on 8443

server {
    listen 8443 ssl http2;
    server_name uk.blocksin.net;

    root /var/www/pterodactyl/public;
    index index.php;

    access_log /var/log/nginx/pterodactyl.app-access.log;
    error_log  /var/log/nginx/pterodactyl.app-error.log error;

    # allow larger file uploads and longer script runtimes
    client_max_body_size 100m;
    client_body_timeout 120s;

    sendfile off;

    ssl_certificate /etc/ssl/panel.blocksin.pem;
    ssl_certificate_key /etc/ssl/panel.blocksin.key;
    ssl_session_cache shared:SSL:10m;
    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384";
    ssl_prefer_server_ciphers on;

    # add_header Strict-Transport-Security "max-age=15768000; preload;";
    add_header X-Content-Type-Options nosniff;
    add_header X-XSS-Protection "1; mode=block";
    add_header X-Robots-Tag none;
    add_header Content-Security-Policy "frame-ancestors 'self'";
    add_header X-Frame-Options DENY;
    add_header Referrer-Policy same-origin;
}

What feature, service or problem is this related to?

DNS not responding/updating

Is this resolved now?

I’m not seeing the handshake error, at least not Chrome or Firefox.

2 Likes

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