Common name substitutes ip address (

When the certificate is received, the procedure is successful.
In the morning I did it and it worked
A records exist.
webuyhousesexpress.com A 13.58.203.220

host webuyhousesexpress.com
webuyhousesexpress.com has address 13.58.203.220
webuyhousesexpress.com mail is handled by 0 webuyhousesexpress.com.

nslookup webuyhousesexpress.com
Server: 172.31.0.2
Address: 172.31.0.2#53

Non-authoritative answer:
Name: webuyhousesexpress.com
Address: 13.58.203.220

But if i check this: https://www.sslshopper.com/ssl-checker.html#hostname=webuyhousesexpress.com
Common name: ip-172-31-32-69
And this common name for three different domain on different servers.

Please help me asap.
Many thanks.

Looks fine to me. At a guess, you updated the DNS but it took a while for the changes to propagate through global DNS.

Sorry but no (
https://www.sslshopper.com/ssl-checker.html#hostname=webuyhousesexpress.com

Where can this value come from ??? For three different sites (((
Common name: ip-172-31-32-69

Hi @Ross,

That is showing that the site is using a self-signed certificate that is not issued by Let’s Encrypt. But Let’s Encrypt has issued five certificates for this site.

https://crt.sh/?Identity=%webuyhousesexpress.com&iCAID=16418

So the basic problem seems to be that the certificates are getting issued, but not installed or configured properly on your server.

[quote]When the certificate is received, the procedure is successful.
In the morning I did it and it worked[/quote]

What software are you using, and how do you know that it was successful?

I configured the same for six sites on different servers.
morning i was checked via https://www.ssllabs.com/ssltest and browser and it work fine.
Now three site working three no.

Use apache+mod_ssl
VirtualHost

<VirtualHost *:443>
ServerName webuyhousesexpress.com
ServerAlias www.webuyhousesexpress.com
DocumentRoot /var/www/htdocs
ErrorLog /var/log/httpd/webuyhousesexpress.com_error.log
CustomLog /var/log/httpd/webuyhousesexpress.com.log combined
SSLCertificateFile /etc/letsencrypt/live/webuyhousesexpress.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/webuyhousesexpress.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateChainFile /etc/letsencrypt/live/webuyhousesexpress.com/chain.pem

Maybe check for other contradictory directives with

grep -r SSLCertificate /etc/apache2

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