SSL fails No secure protocols supported

Nginx config

server {
    access_log /var/log/nginx/mahkamaty_access.log;
    error_log /var/log/nginx/mahkamaty.log;
  	listen 443 ssl;
  	server_name  www.mahkamaty.com;
    ssl_certificate /etc/letsencrypt/live/www.mahkamaty.com/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/www.mahkamaty.com/privkey.pem; # managed by Certbot
    ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers         HIGH:!aNULL:!MD5;

My domain is:
www.mahkamaty.com
I ran this command:
certbot --nginx
It produced this output:
1: mahkamaty.com
2: mahkamaty.ma
3: beta.mahkamaty.com
4: www.mahkamaty.com

I chose 4
My web server is (include version):
nginx version: nginx/1.10.0 (Ubuntu)
The operating system my web server runs on is (include version):
Ubuntu 16.04
My hosting provider, if applicable, is:

I can login to a root shell on my machine (yes or no, or I don't know):
Yes
I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
NO

Fixed it by using Certbot-auto

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