Would it be possible to specify the actual public IP address of the the domain that ssl-checker should resolve to in the options?
The issue I am experiencing is that the domain is behind a cloudflare DNS server that has a different SSL certificate.
The server itself uses an internal certificate that is not being picked up because the domain resolves to the cloudflare DNS.
for example :
curl -v https://www.example.com
will resolve to the the IP address behind cloudflare and display the cloudflare SSL cert.
curl -v --resolve www.example.com:443:127.0.0.1 https://www.example.com
will bypass DNS lookup and check on the server itself (if the server was available on 127.0.0.1)
Would it be possible to specify the actual public IP address of the the domain that ssl-checker should resolve to in the options?
The issue I am experiencing is that the domain is behind a cloudflare DNS server that has a different SSL certificate.
The server itself uses an internal certificate that is not being picked up because the domain resolves to the cloudflare DNS.
for example :
curl -v https://www.example.comwill resolve to the the IP address behind cloudflare and display the cloudflare SSL cert.
curl -v --resolve www.example.com:443:127.0.0.1 https://www.example.comwill bypass DNS lookup and check on the server itself (if the server was available on 127.0.0.1)