Skip to content

Commit

Permalink
clarify syntax - PR ready (#4734)
Browse files Browse the repository at this point in the history
  • Loading branch information
serinko authored Jul 29, 2024
1 parent dfb2a2f commit 5e6417f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions documentation/operators/src/nodes/vps-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ To install a full node from scratch, refer to the [validator setup guide](valida

Before node or validator setup, the VPS needs to be configured and tested, to verify your connectivity and make sure that your provider wasn't dishonest with the offered services.

```admonish info
The commands listed in this chapter must be executed with a prefix `sudo` or from a root shell.
```

### Install Dependencies

SSH to your server as `root` or become one running `sudo -i` or `su`. If you prefer to administrate your VPS from a user environment, supply the commands with prefix `sudo`.
Expand Down Expand Up @@ -96,13 +100,13 @@ ufw status
2. Open all needed ports to have your firewall working correctly:
```sh
# for nym-node
ufw allow 1789,1790,8000,9000,9001,22/tcp
ufw allow 1789,1790,8080,9000,9001,22/tcp

# in case of planning to setup a WSS (for Gateway functionality)
ufw allow 9001/tcp

# in case of reverse proxy for the swagger page (for Gateway optionality)
ufw allow 8080,80,443/tcp
ufw allow 80,443/tcp

# for validator
ufw allow 1317,26656,26660,22,80,443/tcp
Expand Down Expand Up @@ -223,7 +227,7 @@ All node-specific port configuration can be found in `$HOME/.nym/<NODE>/<YOUR_ID
| ------------ | ------------------------- |
| `1789` | Listen for Mixnet traffic |
| `1790` | Listen for VerLoc traffic |
| `8000` | Metrics http API endpoint |
| `8080` | Metrics http API endpoint |
#### Gateway functionality ports
Expand Down

0 comments on commit 5e6417f

Please sign in to comment.