| ... | ... | @@ -71,10 +71,22 @@ Add `vhost` `directory` directive in `/etc/httpd/conf.d/staging.digitec.io.conf` | 
| 
 | 
 | 
3. Create the `{org}.htpasswd` file.
 | 
| 
 | 
 | 
   - The password entry is usually `user: {org}, password: 101`.
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
If the file exists:
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
```bash
 | 
| 
 | 
 | 
# create the file and add the user
 | 
| 
 | 
 | 
htpasswd -c {org}.htpasswd {org}
 | 
| 
 | 
 | 
```
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
If the file does __not__ exist:
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
```bash
 | 
| 
 | 
 | 
# create the file and add the user
 | 
| 
 | 
 | 
htpasswd -c {org}.htpasswd {org}
 | 
| 
 | 
 | 
```
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
Restart the server.
 | 
| 
 | 
 | 
 | 
| 
 | 
 | 
```bash
 | 
| ... | ... |  |