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
1
vote
1 answer

Proximo forwarding multiple IP

I'm using Proximo on my Heroku app, but need to forward only certain traffic through it, so after reading the documentation, I added the IPs I wanted to forward, however it seems to remove the previous IP, so I'm only able to add one IP at a…
James
  • 5,137
  • 5
  • 40
  • 80
0
votes
1 answer

Error connecting to ClearDB when using Proximo

I'm running a Node.js app on Heroku through Proximo in order to get a static IP for outbound traffic. (See https://devcenter.heroku.com/articles/proximo#using-the-proximo-http-proxy, using the Procfile method). Since doing this the MySQL connection…
Jim Wiberley
  • 41
  • 1
  • 3
0
votes
1 answer

What is a netmask that matches exactly one ip?

I'm using proximo static ip to connect to a backend service. The example docs show a netmask 172.18.32.0/24. To my understanding of CIDR that would proxy for 172.18.32.1, 172.18.32.2, etc. I want to use a netmask that only matches one ip address.…
AJcodez
  • 31,780
  • 20
  • 84
  • 118
0
votes
1 answer

How to preserve Proximo IP address when migrating Heroku app to another region

Simply speaking, I need to delete and re-create my Heroku app. If I add Proximo addon to a new app and set my old PROXIMO_URL env var there PROXIMO_URL: http://proxy:...@proxy-....proximo.io Will it work as expected? Will my new app get the old…
Daniel Vartanov
  • 3,243
  • 1
  • 19
  • 26
0
votes
1 answer

Node.js net.createConnection via Promixo

I'm creating a connection via the net module in my Node.js application: this.stream = net.createConnection(25, host, this._onConnect); Which works absolutely fine, however I need to send this traffic through Proximo because my connection requires a…
James
  • 5,137
  • 5
  • 40
  • 80
1
2