Auto and Manual Cert renewal failed

I opened up port 80 on my router but still no joy.

Here is my nginx configuration

server {
        listen 80;
        server_name         openhab.beatrixlay.com;
}
server {
        listen               443 ssl;
        server_name          openhab.beatrixlay.com;

        #Cross-Origin Resource Sharing
        add_header  'Access-Control-Allow-Origin' '*' always;
        add_header  'Access-Control-Allow_Credentials'  'true' always;
        add_header  'Access-Control-Allow-Headers' 'Authorization,Accept.Origin,DNT,X-CustomHeader,Keep-Alive,User=Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range, Range' always;
        add_header  'Access-Control-Allow-Methods' 'GET,POST,OPTIONS,PUT,DELETE,PATCH' always;
        add_header  Set-Cookie X-OPENHAB-AUTH-HEADER=1;

        ssl_certificate        /etc/letsencrypt/live/openhab.beatrixlay.com/fullchain.pem;
        ssl_certificate_key    /etc/letsencrypt/live/openhab.beatrixlay.com/privkey.pem;
        add_header             Strict-Transport-Security "max-age=31536000";

        location / {
            proxy_pass                          http://192.168.1.153:8080;
            proxy_set_header Host               $http_host;
            proxy_set_header X-Real-IP          $remote_addr;
            proxy_set_header X-Forwarded-For    $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwared-Proto   $scheme;
            proxy_read_timeout                  3600;
            auth_basic                          "Username and Password Required";
            auth_basic_user_file                /etc/nginx/.htpasswd;
            proxy_set_header Authorization      "";
}
        # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                #try_files $uri $uri/ =404;
        location /.well-known/acme-challenge/ {
          root                               /var/www/openhab.beatrixlay.com;

        }
    }


So maybe I need to revise the config?