Proxy Servers
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.
Setup
To configure a proxy, set the HTTP_PROXY or HTTPS_PROXY environmental variable on your server before running your app:
- Python
export HTTP_PROXY="http://your-proxy-domain:8080"
export HTTPS_PROXY="http://your-proxy-domain:8080"You can also use an authenticated proxy:
- Python
export HTTP_PROXY="http://username:password@http://your-proxy-domain:8080"
export HTTPS_PROXY="http://username:password@http://your-proxy-domain:8080"