Open routes

Open the following routes to PagoPA:

Environment
API URL Gateway
IP
Port

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