New certs on webserver not registering https for domain

Hi, I have had what I believe is the correct configuration on my website server with certbot. It has been well over 48 hours. Is there extra time to connect needed to activate the https?

1 Like

Certificates are immediately useable - there is no “3 day waiting period” like for hand guns…

It seems that your cert doesn’t contain the “www”; and that is why you are seeing the name mismatch security concern.

See: https://www.ssllabs.com/ssltest/analyze.html?d=fridaro.dev

1 Like

When I look at the certificates you’ve generated over the time it looks like you switcht from a certificate with just the www subdomainto certificates *without* thewww` subdomain.

Also, you’ve generated a lot of certificates for just the base domain recently. Just getting more certificates without fixing the real issue isn’t going to help! The first certificates was as good or as bad as the last one. Fix the issue at hand, not generate more of the same certificates! You’ll be running into one of the rate limits if you do…

3 Likes

Ok, I will redo again and add www. Thanks

1 Like

To make your life easier, your nginx config should have both names in the same config.

server_name www.fridaro.dev;
server_name     fridaro.dev;

Right now, they “do” different things so I’m thinking they are NOT in the same config.
[unless you meant to have them do two different things…]

Try this:
nginx -T | grep -Ei 'server|listen|location|log|root'

2 Likes

Yes, I added www. It works now. Thanks!

4 Likes

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