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 39facee commit eae285cCopy full SHA for eae285c
doc/FAQ.md
@@ -164,13 +164,20 @@ Again, please follow [./guide.md](./guide.md) for our recommendations on setting
164
165
## Can I store my password hashed?
166
167
-Yes you can! Use `hashed-password` instead of `password`. Generate the hash with:
+Yes you can! Set the value of `hashed-password` instead of `password`. Generate the hash with:
168
169
```
170
-echo "thisismypassword" | sha256sum | cut -d' ' -f1
+printf "thisismypassword" | sha256sum | cut -d' ' -f1
171
172
173
-Of course replace `"thisismypassword"` with your actual password.
+Of course replace `thisismypassword` with your actual password.
174
+
175
+Example:
176
177
+```yaml
178
+auth: password
179
+hashed-password: 1da9133ab9dbd11d2937ec8d312e1e2569857059e73cc72df92e670928983ab5 # You got this from the command above
180
+```
181
182
## How do I securely access web services?
183
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments