Comment on page
Using CLI Behind Proxy
When outgoing
When using
relay
CLI (webhookrelayd
container also respects these variables) to specify a proxy that the application should use to connect, set environment variables:export HTTP_PROXY=http://hostname:port/
export HTTPS_PROXY=http://hostname:port/
If the proxy will be performing MITM for HTTPS with untrusted certificate, specify RELAY_INSECURE variable to turn off TLS verification:
export RELAY_INSECURE=true
relay forward --ws
This command will switch webhook transport from GRPC to WebSocket. The only downside of using WebSocket transport is that you will not be able to view response status code through the web UI as they are not returned. This will be changed in future and underlying protocols will offer same functionality.
When using tunnel,
relay
CLI and webhookrelayd
Docker container will create a TCP connection to either tunnel.webrelay.io:9800
or other hosts based on the tunnelling region. Ensure that this URL is reachable.
Last modified 2yr ago