You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flat file backend supports reading credentials from an Apache HTTPd htpasswd formatted file. To
6
-
manage this file you can use [htpasswd](https://httpd.apache.org/docs/2.2/programs/htpasswd.html)
7
-
utility which comes with a standard Apache httpd distribution or by installing apache2-utils
8
-
package on Ubuntu / Debian.
5
+
Flat file backend supports reading credentials from an Apache HTTPd htpasswd formatted file. To manage this file you can use [htpasswd](https://httpd.apache.org/docs/2.2/programs/htpasswd.html) utility which comes with a standard Apache httpd distribution or by installing apache2-utils package on Ubuntu / Debian.
9
6
10
7
### Configuration Options
11
8
@@ -15,10 +12,7 @@ package on Ubuntu / Debian.
15
12
16
13
### Configuration Example
17
14
18
-
Please refer to the authentication section in the StackStorm
19
-
[documentation](http://docs.stackstorm.com) for basic setup concept. The
20
-
following is an example of the auth section in the StackStorm configuration file for the flat-file
21
-
backend.
15
+
Please refer to the authentication section in the StackStorm [documentation](http://docs.stackstorm.com) for basic setup concept. The following is an example of the auth section in the StackStorm configuration file for the flat-file backend.
The following is an sample htpasswd command to generate a password file with a user entry.
31
+
The following is an example htpasswd command to generate a password file with a user entry. You should be using no other hashing algorithm than *bcrypt* as it is consider the only secure hashing algorithm amoung all the algorithms supported by htpasswd.
38
32
39
33
```
40
-
htpasswd -cs /path/to/.htpasswd stark
34
+
htpasswd -cB /path/to/.htpasswd stark
41
35
```
42
36
43
37
## Copyright, License, and Contributors Agreement
44
38
39
+
Copyright 2025 StackStorm, Inc.
45
40
Copyright 2015 StackStorm, Inc.
46
41
47
42
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in
0 commit comments