| 1 | # htpasswd file example |
| 2 | # Generate passwords with: htpasswd -nB username |
| 3 | # Format: username:password_hash |
| 4 | |
| 5 | # Example users (password = "changeme" for all): |
| 6 | admin:$2y$05$LhayLxezLhK1LhWvKxCyLOlzPjzNWZ/9TqWy.Z3L.5qK0K0K0K0K0 |
| 7 | alice:$2y$05$LhayLxezLhK1LhWvKxCyLOlzPjzNWZ/9TqWy.Z3L.5qK0K0K0K0K0 |
| 8 | bob:$2y$05$LhayLxezLhK1LhWvKxCyLOlzPjzNWZ/9TqWy.Z3L.5qK0K0K0K0K0 |
| 9 | |
| 10 | # To create real passwords: |
| 11 | # htpasswd -c /etc/larcs/htpasswd admin |
| 12 | # htpasswd /etc/larcs/htpasswd alice |
| 13 | |