Questions tagged [proximo]

Proximo is a Heroku Add-on (plugin).

Because the Heroku dyno grid is dynamic in nature, the IP address that a given dyno will be assigned over time will be both dynamic and unpredictable. This dynamic sourcing of outbound traffic can make it difficult to integrate with APIs or make connections through firewalls that require IP-based whitelisting.

Proximo overcomes this limitation by providing a known, static IP address and a tunnel through which your app can send outbound traffic so that it is always sourced from your assigned IP. You can then provide this IP address to an API partner or use it to form the basis of inbound firewall rules to connect to a protected resource such as an internal API or database.

Source

20 questions
6
votes
0 answers

Proximo Heroku addon is timing out

I have a simple node proxy that I have added proximo to use whitelisting for an API. It worked before, but having followed the tutorial I now get this in my logs: 2014-08-19T16:23:21.376311+00:00 heroku[router]: at=error code=H12 desc="Request…
Tom
  • 1,546
  • 2
  • 20
  • 42
5
votes
3 answers

How to fix java.net.BindException with Proximo on Heroku?

I have installed the Proximo add-on on Heroku and when prepending the command to my existing command, I get a BindException from Java. This is how my prepended command looks: web: bin/proximo sh target/bin/webapp and as soon as I remove the Proximo…
4
votes
0 answers

Can ActiveRecord use a proxy to access the database?

I need to access a database that requires whitelisted IPs. In order to have a static IP I am using Proximo AddOn on Heroku. It allows me to use a proxy for outbound connections. Can I use that proxy to access a database? I searched on ActiveRecord…
Tony
  • 10,088
  • 20
  • 85
  • 139
3
votes
2 answers

Use HTTP proxy with Savon

I need to access a service with an IP whitelist from Heroku, necessitating the need for an HTTP proxy. I configured the Proximo add on, and have a proxy url that looks approximately like http://proxy:secret-key@proxy-0-0-0-0.proximo.io In Savon, I…
AndrewH
  • 3,418
  • 2
  • 15
  • 27
3
votes
0 answers

Connect to remote database from Heroku using a static IP via Proximo

I have a nodejs app (parse-server-example) that I want to connect to a remote mongoDB that has access controlled via IP whitelist. I have configured Proximo, and my startup Procfile looks like this: web: bin/proximo npm start However, I get timeout…
2
votes
0 answers

Check if Heroku Proximo has changed the ip address

Is there a way to check if Heroku changed the static ip which we get by using proximo add on?
Swathi K
  • 266
  • 2
  • 9
2
votes
4 answers

Connect to remote database from Heroku with static IP (Since database server will only allow whitelisted IPs)

I am running a Ruby on Rails application on Heroku and my database is in someother place where it will be accessed with certain whitelisted IP's only but since heroku doesn't provide dynamic IP's I thought of using proximo. Please help me how to…
Aahlad
  • 141
  • 5
  • 14
2
votes
1 answer

Proximo Add On is not working on Heroku - Errno::EADDRNOTAVAIL: Cannot assign requested address

I have done all things according to proximo documentation and I used the proximo wrapper with my JRuby application. However it's not working. I got an error message below Errno::EADDRNOTAVAIL: Cannot assign requested address - bind - Cannot assign…
Murat Güzel
  • 4,986
  • 4
  • 19
  • 12
2
votes
1 answer

IP address of Proximo add-on Heroku

How can I determine the IP address of Proximo add-on Heroku? I looked at the following link https://devcenter.heroku.com/articles/proximo but could not figure it out.
vishal
  • 279
  • 4
  • 14
2
votes
1 answer

Proximo heroku addon timeout on https requests

I've just installed the the Proximo heroku add-on for a python app. I loaded up a shell and kicked the tires, and hitting a HTTP address works, but HTTPS addresses do not. HTTP addresses show up in the Proximo logs, HTTPS addresses timeout leaving…
Eric Palakovich Carr
  • 22,701
  • 8
  • 49
  • 54
2
votes
0 answers

Proximo HTTP proxy vs SOCKS proxy

Does Proximo provide both a SOCKS proxy (using Dante) and a HTTP proxy (using something like Squid?). Background: I'm think of using proximo to whitelist my Heroku app for a SOAP connection to a financial data provider. I know Proximo can wrap all…
Hart Lambur
  • 51
  • 1
  • 4
2
votes
0 answers

Process on Heroku running through Proximo fails

There's a method in my Rails app (intended to be triggered via Rake task) that shells out and runs a PhantomJS process: bin/proximo bin/phantomjs vendor/assets/javascripts/yslow.js http://www.example.com The phantomjs executable is 1.8.1 or Linux…
Jimmy
  • 35,686
  • 13
  • 80
  • 98
1
vote
0 answers

How to configure mysql in doctrine to connect via a proxy address?

I am running a Symfony 3 application on Heroku, using doctrine as the ORM. I need to connect to an external MySQL database that is behind a firewall. I obtained a static IP via Proximo and it is now white listed. If I connect to it via telnet it…
tatsuhirosatou
  • 25,149
  • 14
  • 39
  • 40
1
vote
0 answers

Static IP Address and proxy with Heroku with Proximo and nginx

I have a static IP address setup on Heroku with Proxmio. And I want to use the Proximo proxy to proxy all requests using nginx (also on the same heroku instance). Here's what I have as the nginx config for proxying the Proxmio requests: location…
Patrick Berkeley
  • 2,206
  • 21
  • 26
1
vote
1 answer

Parse Error when making request behind proxy

Hello developer community, I'm using AWS Cloudsearch (API version: 2011-02-01) and trying to upload and search from an app living on heroku, which means i need a proxy with a static ip so that i can whitelist it, but i'm having problems... I'm using…
1
2