nginxsslhttpsnginx-reverse-proxylets-encrypt

Nginx reverse proxy HTTPS error : (failed)net::ERR_SSL_PROTOCOL_ERROR


I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening on port 443 and using the certificates, but when I use Nginx for listening on port 443 using the same certificates, I am having this error (from browser) :

(failed)net::ERR_SSL_PROTOCOL_ERROR

Here is my Nginx site-available conf for my domain :

server{
    listen 443 ssl;
    server_name xxxxxx.hstgr.cloud;
    
    ssl_certificate /...path.../fullchain.pem;
    ssl_certificate_key /...path.../privkey.pem;
    
    location / {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        
        location /.well-known/acme-challenge/ {
            autoindex on;
            root  /...path.../.well-known/acme-challenge;
        }
    }
}

Can anyone enlight me, what is wrong with this conf giving the ERR_SSL_PROTOCOL_ERROR ?


Solution

  • Ok, here is the checklist of everything I did, including the steps that were already valid for me.

    Maybe it can help someone else :







    I hope this process can helps people having issues with SSL configuration in Nginx. If you have anything to add to the checklist, feel free to update my post.