Chrome on my laptop and phone are returning an ERR_SSL_PROTOCOL_ERROR and SSL Labs is telling me my site doesn’t even have a certificate.
What’s wrong with my configuration?
$ openssl s_client -connect bluma.net:443
CONNECTED(00000003)
write:errno=104
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 176 bytes
Verification: OK
---
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:
PSK identity: None
PSK identity hint: None
SRP username: None
Start Time: 1556822276
Timeout : 7200 (sec)
Verify return code: 0 (ok)
Extended master secret: no
---
And the site configuration:
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name bluma.net;
root /var/www/domains/bluma.net;
access_log /var/log/nginx/bluma.net.access.log;
error_log /var/log/nginx/bluma.net.error.log;
include /etc/nginx/sites-available/include-php;
location / {
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?q=$1;
}
}
ssl on;
ssl_certificate /etc/letsencrypt/live/bluma.net/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/bluma.net/privkey.pem; # managed by Certbot
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
#ssl_session_tickets off;
}