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.
1 parent b004843 commit 2b565bcCopy full SHA for 2b565bc
webpage/docs/configuration/authentication.md
@@ -240,10 +240,10 @@ You can leave the file empty and add users later using the HTTP API.
240
}
241
```
242
243
- 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:
244
245
```bash
246
- echo -n "password" | sha256sum
+ echo -n "password" | openssl sha256 -binary | base64 -
247
248
</details>
249
0 commit comments