mirror of https://github.com/linkerd/linkerd2.git
Fixed build rust doc (#481)
BUILD.md included a command with an invalid environment variable, which prevented the proxy from starting. The IP address `0` is no longer considered valid by the proxy, so the doc now refers to `0.0.0.0` instead. Signed-off-by: Ray Tung <rtung@thoughtworks.com>
This commit is contained in:
parent
0f6db6efc0
commit
1d7b4e40de
2
BUILD.md
2
BUILD.md
|
@ -324,7 +324,7 @@ To build and run the Rust proxy:
|
|||
```bash
|
||||
cargo build -p conduit-proxy
|
||||
CONDUIT_PROXY_LOG=trace \
|
||||
CONDUIT_PROXY_PUBLIC_LISTENER=tcp://0:5432 \
|
||||
CONDUIT_PROXY_PUBLIC_LISTENER=tcp://0.0.0.0:5432 \
|
||||
CONDUIT_PROXY_PRIVATE_FORWARD=tcp://127.0.0.1:1234 \
|
||||
CONDUIT_PROXY_CONTROL_URL=tcp://127.0.0.1:8086 \
|
||||
target/debug/conduit-proxy
|
||||
|
|
Loading…
Reference in New Issue