Open routes

Open the following routes to PagoPA:

EnvironmentAPI URL GatewayIPPort

UAT

20.31.11.237

443

PROD

20.103.162.3

443

Proxying HTTP calls

If your machine needs a proxy to correctly make HTTP calls, a proper tuning of wget is required.

The easiest way to do so is to export the proxy address:

export http_proxy="[protocol://][user:pwd]host[:port]"
export https_proxy="[protocol://][user:pwd]host[:port]"

E.g.

export http_proxy="http://user:pwd@127.0.0.1:8080"
export https_proxy="http://user:pwd@127.0.0.1:8080"

This will ensure that each HTTP(S) call done under this session is proxied.

Last updated