ERR_SSL_PROTOCOL_ERROR only from some ISP?

Some times ago I found out that my website was not available (ERR_SSL_PROTOCOL_ERROR), on some school network. It was surprising, but I just forgot about it because it was only occurring at this place.

Today I installed a new wifi in my house with a new ISP, and again, my website returns ERR_SSL_PROTOCOL_ERROR. When I switch to 4G, or any other network, it works.

:white_check_mark:Issue reproduced with different devices.
:white_check_mark:Other https websites work, only my website doesnt

  • Chrome returns ERR_SSL_PROTOCOL_ERROR
  • Firefox returns SSL_ERROR_RX_RECORD_TOO_LONG
  • Curl returns SSL routines:CONNECT_CR_SRVR_HELLO:wrong version number
  • openssl returns
openssl s_client -connect my.domain:443   
CONNECTED(00000005)
4377921132:error:1400410B:SSL routines:CONNECT_CR_SRVR_HELLO:wrong version number:/BuildRoot/Library/Caches/com.apple.xbs/Sources/libressl/libressl-22.240.1/libressl-2.6/ssl/ssl_pkt.c:386:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 5 bytes and written 0 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
SSL-Session:
    Protocol  : TLSv1.2
    Cipher    : 0000
    Session-ID: 
    Session-ID-ctx: 
    Master-Key: 
    Start Time: 1571644864
    Timeout   : 7200 (sec)
    Verify return code: 0 (ok)
---

This server only holds nginx which serves as a loadbalancer.

Here is the nginx config file:

upstream app {
    server unix:/var/www/myproject.uwsgi.sock;
}

server {
    listen 443 ssl;
    listen [::]:443 ssl ipv6only=on;
    server_name {{ server_name }};
    charset utf-8;
    client_max_body_size 1G;

    ssl_certificate /etc/letsencrypt/live/{{ server_name }}/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/{{ server_name }}/privkey.pem;
    include /etc/letsencrypt/options-ssl-nginx.conf;

    ##################################
    # from https://cipherli.st/
    # and https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
    ssl_ecdh_curve secp384r1;
    ssl_session_cache shared:SSL:10m;
    ssl_session_tickets off;
    ssl_stapling on;
    ssl_stapling_verify on;
    resolver 8.8.8.8 8.8.4.4 valid=300s;
    resolver_timeout 5s;
    # Disable preloading HSTS for now. You can use the commented out header line that includes
    # the "preload" directive if you understand the implications.
    #add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
    add_header Strict-Transport-Security "max-age=63072000";
    add_header X-Frame-Options DENY;
    add_header X-Content-Type-Options nosniff;
    ##################################

    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;

    location / {
        include uwsgi_params;
        uwsgi_pass app;
    }

}

server {
    if ($host = {{ server_name }}) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    listen 80;
    listen [::]:80;
    server_name {{ server_name }};
    return 404; # managed by Certbot
}

Again, everything works on some networks, but it fails on some other. I have no idea what is causing the issue. How can I solve this?

1 Like

Hi @lapin

please share your domain name.

The domain name is api.mydomain.com

You have ipv4- and ipv6 - addresses - https://check-your-website.server-daten.de/?q=api.mydomain.com

Host T IP-Address is auth. ∑ Queries ∑ Timeout
api.mydomain.com A x.x.x.x Singapore//Singapore (SG) - DigitalOcean, LLC No Hostname found yes 1 0
AAAA 2400:6180 Singapore//Singapore (SG) - DigitalOcean, LLC yes
www.api.mydomain.com Name Error yes 1 0

But your ipv6 doesn't work:

Domainname Http-Status redirect Sec. G
http://api.mydomain.com/
x.x.x.x 301 https://api.mydomain.com/
Html is minified: 107,78 % 0.560 A
http://api.mydomain.com/
2400:6180 301 https://api.mydomain.com/
Html is minified: 107,78 % 0.550 A
https://api.mydomain.com/
x.x.x.x GZip used - 89 / 74 - -20,27 % Inline-JavaScript (∑/total): 0/0 Inline-CSS (∑/total): 0/0 404 Html is minified: 100,00 % 3.940 M
Not Found
https://api.mydomain.com/
2400:6180 -4 1.086 W
SendFailure - The underlying connection was closed: An unexpected error occurred on a send.

There is a ConnectionClose - Result.

So connecting your domain via ipv4 works. But if a browser prefers ipv6 and if the ISP supports ipv6, the website doesn't answer.

  • Remove your ipv6 (or, better)
  • fix it.
1 Like

PS: Your port 443 via ipv6 is a http port.

So your defined vHost isn’t used.

Looks like there is a wrong vHost that answers.

What says

nginx -T
1 Like

Alright, thanks for your help. I figured out I was looking at the wrong nginx conf file. The one I pasted was used for another project.

The solution was very easy yet very hard to find:

I needed to change listen [::]:443 ipv6only=on; to listen [::]:443 ssl ipv6only=on;.

It appears that it doesn’t work when we miss this “ssl” keyword.

3 Likes

Yep, that's required. If not, it's a http port -> Grade Q.

1 Like

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