Compose-Examples/examples/authelia/config/users_database.yml
2023-03-02 00:37:37 +01:00

20 lines
726 B
YAML

---
###############################################################
# Users Database #
###############################################################
# This file can be used if you do not have an LDAP set up.
# List of users
users:
yourUsername: # define here your username
disabled: false
displayname: "My Authelia User"
# Password is authelia
password: "$argon2id$v=19$m=65536,t=3,p=4$mTOaOa3MOexX7JQ02BdXzw$OzAxTnSPEnahQgIi+y4QPP5/xYIQ8uEWDYW+vlupeTM" # generate a secure hash with: $ docker run authelia/authelia:latest authelia crypto hash generate argon2 --password 'password'
email: authelia@example.com
groups:
- admins
- dev
...