Proxy Serversanchor

If your server requires HTTP requests to be made through a proxy, you can follow these steps to set up proxies for the server-side SDK.

Setupanchor

To configure a proxy, set the HTTP_PROXY or HTTPS_PROXY environmental variable on your server before running your app:

  1. Python
export HTTP_PROXY="http://your-proxy-domain:8080"
export HTTPS_PROXY="http://your-proxy-domain:8080"

You can also use an authenticated proxy:

  1. Python
export HTTP_PROXY="http://username:password@http://your-proxy-domain:8080"
export HTTPS_PROXY="http://username:password@http://your-proxy-domain:8080"