CURL PHP não consegue resolver o host

CURL PHP não consegue resolver o host

Estou tentando um script php que está fazendo solicitações com CURL.

Mas recebo o erro Não foi possível resolver o host 'example.com'

$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER  , true);
curl_setopt($ch, CURLOPT_URL, 'https://example.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec( $ch );
if($result === false)
{
    echo 'Error Curl : ' . curl_error($ch);
}
else
{
    echo 'OK';
}

Então comecei a pesquisar o problema, tentei fazer solicitações do meu servidor com ping, curl (CLI) e telnet (que usam libc6 como curl aparentemente) nslookup também funciona bem

Tudo funciona bem.

Então onde está o problema ?

Obrigado pela ajuda

  • DebianChiado
  • libc62.19-18
  • PHP5.6.8-1 (com php-fpm)
  • nginx

informação relacionada