Curl Não foi possível resolver o host para HTTPS

0

Estou tentando usar o curl em uma versão 6.1 do Red Hat Enterprise Linux Server. Quando tento usar o URL com HTTPS, aparece uma mensagem de erro "Não foi possível resolver o host". Mas, para o mesmo URL, quando experimentado com HTTP ( link ), a resposta é bem-sucedida.

[root@localhost /]# curl --proxy-user username:password -L -i https://www.google.lk
curl: (6) Couldn't resolve host 'www.google.lk'
[root@localhost /]#

Pode haver algo errado com minha configuração de SSL aqui. Qualquer ajuda é muito apreciada ...

    
por Indika K 19.06.2012 / 13:11

1 resposta

1

O problema foi OK depois de configurar o proxy para HTTPS da seguinte forma.

export https_proxy=http://proxy:8080/
    
por 20.06.2012 / 20:08