Não é possível acessar o heroku através do firewall

2

Estou tentando conectar-me ao heroku via CLI (usando o Toolbelt do heroku) e não consigo fazer isso. Quando eu digito minhas credenciais, o heroku responde com:

Post https://api.heroku.com/login: x509: certificate signed by unknown authority

Estou dentro do firewall de uma empresa que bloqueia a maioria das conexões e preciso usar um certificado para navegar.

O que eu posso fazer para entrar no heroku via cli?

    
por Renato Oliveira 07.10.2016 / 14:55

1 resposta

0

você precisa definir seu proxy e, em seguida, emitir o comando de login heroku

Fonte: link

Using an HTTP proxy If you’re behind a firewall that requires use of a proxy to connect with external HTTP/HTTPS services, you can set the HTTP_PROXY or HTTPS_PROXY environment variables in your local developer environment, before running the heroku command. For example, on a Unix system you could do something like this:

$ export HTTP_PROXY=http://proxy.server.com:portnumber 
or 
$ export HTTPS_PROXY=https://proxy.server.com:portnumber 
$ heroku login

On a Windows machine, either set it in the System Properties/Environment Variables, or do it from the terminal:

>  set HTTP_PROXY=http://proxy.server.com:portnumber 
or    
>  set HTTPS_PROXY=https://proxy.server.com:portnumber    
>  heroku login
    
por 01.11.2016 / 22:18