Skip to content

Commit b2b1e69

Browse files
committed
BZ-1693410: Included the bcrypt option when creating htpasswd files.
1 parent 46286b0 commit b2b1e69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/identity-provider-creating-htpasswd-file.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ link:http://httpd.apache.org/docs/2.4/programs/htpasswd.html[`htpasswd`].
2020
. Create or update your with a user name and hashed password:
2121
+
2222
----
23-
$ htpasswd -c -b </path/to/users.htpasswd> <user_name> <password>
23+
$ htpasswd -c -B -b </path/to/users.htpasswd> <user_name> <password>
2424
----
2525
+
2626
The command generates a hashed version of the password.
2727
+
2828
For example:
2929
+
3030
----
31-
$ htpasswd -c -b users.htpasswd user1 MyPassword!
31+
$ htpasswd -c -B -b users.htpasswd user1 MyPassword!
3232
3333
Adding password for user user1
3434
----

0 commit comments

Comments
 (0)