Https site not loading

Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.

My domain is:
t.mcmotor.ps
I ran this command:
sudo certbot --nginx -d t.mcmotor.ps
It produced this output:

My web server is (include version):
nginx/1.14.0

The operating system my web server runs on is (include version):
ububtu 18.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

The version of my client is (e.g. output of certbot --version or certbot-auto --version if you’re using Certbot):
0.31.0

In addition nginx config file as follow
server {
listen 0.0.0.0:80;

listen 0.0.0.0:443 ssl default;

server_name t.mcmotor.ps;


access_log /var/log/nginx/autoapp_t_access.log;
error_log /var/log/nginx/autoapp_t_error.log;
access_log /var/log/nginx/auto_t_debug.log;
    gzip            on;
    gzip_min_length 1000;
    gzip_comp_level 9;
    #gzip_proxied    expired no-cache no-store private auth;
    gzip_proxied    any;
    gzip_types      text/plain application/json;


    location / {
            root /var/www/autoapp_t;
            index index.html index.htm;
    }

listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/t.mcmotor.ps/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/t.mcmotor.ps/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}

Hi @mcm

there is a check of your domain, 30 minutes old - https://check-your-website.server-daten.de/?q=t.mcmotor.ps#ct-logs

Certificate creation has worked.

Issuer not before not after Domain names LE-Duplicate next LE
Let's Encrypt Authority X3 2019-08-28 2019-11-26 t.mcmotor.ps
1 entries duplicate nr. 1

http works, https not:

Domainname Http-Status redirect Sec. G
http://t.mcmotor.ps/
185.241.7.215 301 https://t.mcmotor.ps/ 0.140 A
http://www.t.mcmotor.ps/
185.241.7.215 200 0.143 H
https://t.mcmotor.ps/
185.241.7.215 -14 10.017 T
Timeout - The operation has timed out
https://www.t.mcmotor.ps/
185.241.7.215 -14 10.017 T
Timeout - The operation has timed out

Works your nginx internal?

curl https://t.mcmotor.ps/

from your server?

If yes, it's a firewall problem.

If not, what says

nginx -T

Thank you for reply
is it a firewall problem?
curl https://t.mcmotor.ps/
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to t.mcmotor.ps:443

Looks more like a wrong configuration. A regular http output is expected, that's a curl error message.

Is this

a wrong copy? Or is it a listen 443 in the listen 80 block?

I didn’t understand your question

The result of NGINX -T available on
http://t.mcmotor.ps/mcmNginx.conf

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