Refactor CrowdSec configuration: remove deprecated config.yaml, add local_api_server.yaml, and update docker-compose for new user database
This commit is contained in:
23
authelia/users_database.yml
Normal file
23
authelia/users_database.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
# authelia/users_database.yml
|
||||
# User database for Authelia authentication
|
||||
# Passwords are hashed with argon2id algorithm
|
||||
# Use: authelia crypto hash generate argon2 --password 'your_password'
|
||||
|
||||
users:
|
||||
# Admin user with full access
|
||||
admin:
|
||||
displayname: "Administrator"
|
||||
password: "$argon2id$v=19$m=65536,t=3,p=4$BpLnfgDsc2WD8F2q$o/vzA4myCqZZ36bUGsDY//8mKUYNZZaR0t1MF//X73A" # password: admin123
|
||||
email: admin@3launchpad.com
|
||||
groups:
|
||||
- admins
|
||||
- users
|
||||
|
||||
# Developer user with dev and user access
|
||||
developer:
|
||||
displayname: "Developer"
|
||||
password: "$argon2id$v=19$m=65536,t=3,p=4$BpLnfgDsc2WD8F2q$o/vzA4myCqZZ36bUGsDY//8mKUYNZZaR0t1MF//X73A" # password: dev123
|
||||
email: dev@3launchpad.com
|
||||
groups:
|
||||
- devs
|
||||
- users
|
||||
Reference in New Issue
Block a user