From 11522d97577ee8acda8f7b4bb4ff9aeabee71fad Mon Sep 17 00:00:00 2001 From: Bernd Storath <999999bst@gmail.com> Date: Thu, 5 Mar 2026 11:22:32 +0100 Subject: [PATCH] add docs --- docs/content/guides/cli.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/content/guides/cli.md b/docs/content/guides/cli.md index 5a4b5a07..f563e427 100644 --- a/docs/content/guides/cli.md +++ b/docs/content/guides/cli.md @@ -41,3 +41,31 @@ docker compose exec -it wg-easy cli db:admin:reset --password ``` This will reset the password for the admin user to the new password you provided. If you include special characters in the password, make sure to escape them properly. + +### Show Clients + +List all clients that are currently configured with details such as client ID, Name, Public Key, and enabled status. + +```shell +cli clients:list +``` + +### Show Client QR Code + +Display the QR code for a specific client, which can be scanned by a compatible app to import the client's configuration. + +```shell +cli clients:qr +``` + +Replace `` with the actual client ID you want to show the QR code for. + +/// warning | IPv6 Support + +IPv6 support is enabled by default, even if you disabled it using environment variables. To disable it pass the `--no-ipv6` flag when running the CLI. + +```shell +cli clients:qr --no-ipv6 +``` + +///