fix incorrect docs, #545.

This commit is contained in:
Miroslav Šedivý 2025-06-17 09:58:42 +02:00
parent b0048432df
commit 2b565bc762

View file

@ -240,10 +240,10 @@ You can leave the file empty and add users later using the HTTP API.
}
```
If you want to hash the passwords, you can use the following command to generate a sha256 hash:
If you want to hash the passwords, you can use the following command to generate a sha256 base64-encoded hash of the password:
```bash
echo -n "password" | sha256sum
echo -n "password" | openssl sha256 -binary | base64 -
```
</details>