Comment on page
Regions
Regional tunnel servers are available in a number of different locations to enable fast & low latency traffic to your applications. Tunnels in different regions will get different domains/subdomains.
Webhook Relay regions:
- default region is in Belgium (country within Europe can change without notice)
- au - Sydney, Australia
- us-west - Silicon Valley, US
When using relay CLI, specify
--region <region name>
flag:relay connect -s whr-demo --region us-west :4000
Connecting:
http://whr-demo.us-west.webrelay.io <----> http://127.0.0.1:4000
When using webhookrelayd there are two options to specify region:
- First one is to set environment variable
REGION=us-west
:
docker run -e REGION=us-west -e KEY=<key> -e SECRET=<secret> webhookrelay/webhookrelayd:latest --mode tunnel -t jupyter
- Second option is to set it via the command flag:
docker run -e KEY=<key> -e SECRET=<secret> webhookrelay/webhookrelayd:latest --mode tunnel -t jupyter --region us-west
Last modified 2yr ago