Hey,
In my case I’ve did:
- Check the certificates in folder: /etc/letsencrypt
ls /etc/letsencrypt
Certificate was generated as example.com_ecc
- Then go to /etc/nginx/sites-available
Find file for the site: example.com-ssl.conf
- Update the paths on lines starting with:
ssl_certificate
by adding _ecc:
ssl_certificate /etc/letsencrypt/example.com_ecc/fullchain.cer;
ssl_certificate_key /etc/letsencrypt/example.com_ecc/vanthletic.com.key;
This is working fine for me. Not sure if this is the correct way to resolve it.
I’ve tried by generation of old format certificate - which didn’t work.