Configure Heroku with proxy

1

I'm trying to start using Heroku to test a java web app I made, I downloaded the Heroku Toolbelt but at the time of logging it launches an Unable to connect to Heroku API, please check internet connectivity and try again.

Here where a proxy is used and as it is said in the Heroku website:

Note that if you're behind a firewall that requires a proxy to connect to external HTTP / HTTPS services, you can set the HTTP_PROXY or HTTPS_PROXY environment variables before running the heroku command.

I tried to add the proxy in the environment variables but I keep getting the same error. Has anyone gone through this?

    
asked by anonymous 06.04.2015 / 19:16

1 answer

0

Much like in the case of this question in English at this link , it is possible that the proxy you are trying to connect to is blocking TCP port 22, which is used for SSH on Unix systems. As such port is not commonly used by lay user applications, even on windows systems, typical firewalls on workspaces are configured to prevent connections through it.

    
11.09.2015 / 05:22