Help designing OpenZiti network

#   docker container, the ${http_server} variable would likely be set to web.test.blue but the port for the http server
#   inside the container is listening on 8000, not 80. Be careful with the port and make sure the ${http_server}:port
#   is reachable from the ${http_server_id}.  
ziti edge create config http.host.v1 host.v1 '{"protocol":"tcp", "address":"'"${http_server}"'", "port":80}'

When you create the host.v1 config, you need to know whatever http server you're tryin to connect to. ${http_server} is used in that ziti cli command to create the offload address.

So, you would set

http_server="localhost" # or whatever

then you run the ziti cli command to create the config.

hth

Oh, so it is an env var wherever I am running the ziti cli? The variable name being lowercase threw me off.