Request Proxy Agent
Prerequisites:
Deploying the request proxy agent:
docker pull apidog/apidog-request-proxy-agent && \
docker run --name apidog-request-proxy-agent \
-p 9159:9159 \
-d apidog/apidog-request-proxy-agent
Environment Variable | Description | Example |
---|---|---|
SOURCE_IP_WHITELIST | List of allowed source IPs, separated by commas (Due to operating system restrictions, this variable can only be used on Linux and must be used with--network=host .) | --network=host -e SOURCE_IP_WHITELIST=134.34.4.3,123.333.33.0/24 |
SOURCE_IP_BLACKLIST | List of blocked source IPs, separated by commas (Due to operating system restrictions, this variable can only be used on Linux and must be used with--network=host .) | --network=host -e SOURCE_IP_BLACKLIST=134.34.4.3,123.333.33.0/24 |
DESTINATION_DOMAIN_WHITELIST | List of allowed target domain names, separated by commas | -e DESTINATION_DOMAIN_WHITELIST=xxx.yyy.com,*.yyy.com |
DESTINATION_DOMAIN_BLACKLIST | List of blocked target domain names, separated by commas | -e DESTINATION_DOMAIN_BLACKLIST=xxx.yyy.com,*.yyy.com |
DESTINATION_IP_WHITELIST | List of allowed target IPs, separated by commas | -e DESTINATION_IP_WHITELIST=134.34.4.3,123.333.33.0/24 |
DESTINATION_IP_BLACKLIST | List of blocked target IPs, separated by commas | -e DESTINATION_IP_BLACKLIST=134.34.4.3,123.333.33.0/24 |
ALLOW_PRIVATE_IP | Allow requests to internal IPs (boolean, default is false) | -e ALLOW_PRIVATE_IP=false |
NOTE
Adding the Request Proxy Agent in Apidog:
Modified at 2 months ago