I have a system that sends data to clients using Perl LWP. They can choose their URL, as well as POST or GET.
Recently, a new client complained that the service was down and they suspect their endpoint is using SNI SSL.
In the logs, all I see is the error message "(certificate verification failed) (500 read timeouts)."
Is there any way to find out if this issue is due to their SNI SSL or something else? I think I can solve the problem by disabling verify_hostname, but this is the last resort, I would prefer it to work correctly.
What other steps should I take?
source share