[FAQ] change output of user's links more to more user-friendly look

Currently output of existing method for obtaining proxy links of users is cluttered and messy, let's change it to a more clean and precise one
This commit is contained in:
Nick Parfyonov 2026-04-07 13:12:22 +03:00
parent 14674bd4e6
commit f5e63ab145
No known key found for this signature in database
GPG Key ID: 05434F859E47959E
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ systemctl daemon-reload
**7.** To get the link(s), enter: **7.** To get the link(s), enter:
```bash ```bash
curl -s http://127.0.0.1:9091/v1/users | jq curl -s http://127.0.0.1:9091/v1/users | jq -r '.data[] | "User: \(.username)\n\(.links.tls[0] // empty)"'
``` ```
> Any number of people can use one link. > Any number of people can use one link.

View File

@ -150,7 +150,7 @@ systemctl daemon-reload
**7.** Для получения ссылки/ссылок введите **7.** Для получения ссылки/ссылок введите
```bash ```bash
curl -s http://127.0.0.1:9091/v1/users | jq curl -s http://127.0.0.1:9091/v1/users | jq -r '.data[] | "User: \(.username)\n\(.links.tls[0] // empty)"'
``` ```
> Одной ссылкой может пользоваться сколько угодно человек. > Одной ссылкой может пользоваться сколько угодно человек.