File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,20 @@ Again, please follow [./guide.md](./guide.md) for our recommendations on setting
164
164
165
165
## Can I store my password hashed?
166
166
167
- Yes you can! Use ` hashed-password ` instead of ` password ` . Generate the hash with:
167
+ Yes you can! Set the value of ` hashed-password ` instead of ` password ` . Generate the hash with:
168
168
169
169
```
170
- echo "thisismypassword" | sha256sum | cut -d' ' -f1
170
+ printf "thisismypassword" | sha256sum | cut -d' ' -f1
171
171
```
172
172
173
- Of course replace ` "thisismypassword" ` with your actual password.
173
+ 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
+ ` ` `
174
181
175
182
## How do I securely access web services?
176
183
You can’t perform that action at this time.
0 commit comments