We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bdf7d43 + eafee5f commit 45592f3Copy full SHA for 45592f3
README.md
@@ -43,8 +43,9 @@ Quick Links:
43
Here is a quick command to start the wg-access-server for the first time and try it out.
44
45
```bash
46
-export WG_ADMIN_PASSWORD="example"
+export WG_ADMIN_PASSWORD=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n1)
47
export WG_WIREGUARD_PRIVATE_KEY="$(wg genkey)"
48
+echo "Your automatically generated admin password for the wg-access-server's web interface: $WG_ADMIN_PASSWORD"
49
50
docker run \
51
-it \
0 commit comments