Skip to content

Commit

Permalink
Merge pull request #986 from openziti/update-quickstart
Browse files Browse the repository at this point in the history
fix quickstart doc
  • Loading branch information
dovholuknf authored Nov 26, 2024
2 parents 2df22ce + 5663a14 commit 729ba14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions docusaurus/docs/learn/quickstarts/network/hosted.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ export EXTERNAL_DNS="acme.example.com"
```text
export EXTERNAL_IP="$(curl -s eth0.me)"
export ZITI_CTRL_EDGE_IP_OVERRIDE="${EXTERNAL_IP}"
export ZITI_ROUTER_IP_OVERRIDE="${EXTERNAL_IP}"
export ZITI_CTRL_ADVERTISED_ADDRESS="${EXTERNAL_DNS:-${EXTERNAL_IP}}"
export ZITI_ROUTER_ADVERTISED_ADDRESS="${EXTERNAL_DNS:-${EXTERNAL_IP}}"
export ZITI_CTRL_ADVERTISED_PORT=8440
export ZITI_CTRL_EDGE_ADVERTISED_ADDRESS="${EXTERNAL_DNS:-${EXTERNAL_IP}}"
export ZITI_CTRL_EDGE_ADVERTISED_PORT=8441
export ZITI_ROUTER_ADVERTISED_ADDRESS="${EXTERNAL_DNS:-${EXTERNAL_IP}}"
export ZITI_ROUTER_IP_OVERRIDE="${EXTERNAL_IP}"
export ZITI_ROUTER_PORT=8442
```

Expand Down
4 changes: 2 additions & 2 deletions docusaurus/docs/learn/quickstarts/zac/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ the ZAC on the management API web binding.
1. Unzip the console in the controller's working directory.

```text
unzip -d ${ZITI_HOME}/zac ./ziti-console.zip
unzip -d ${ZITI_HOME}/console ./ziti-console.zip
```

1. In **${ZITI_HOME}/$(hostname -s).yaml**, add a web API binding `zac` in the list containing `edge-management`.

```text
- binding: zac
options:
location: ./zac
location: ./console
indexFile: index.html
```

Expand Down

0 comments on commit 729ba14

Please sign in to comment.