19 lines
609 B
YAML
19 lines
609 B
YAML
---
|
|
###############################################################
|
|
# Users Database #
|
|
###############################################################
|
|
|
|
# This file can be used if you do not have an LDAP set up.
|
|
|
|
# List of users
|
|
users:
|
|
authelia:
|
|
disabled: false
|
|
displayname: 'Authelia User'
|
|
# Password is authelia
|
|
password: '$argon2id$v=19$m=65536,t=3,p=4$qOKNq+u5lZHOTnsJY1Sp3g$s6zT9EKncfkmIJmykzZProUigRRJ26hlTl1WC+mG2do' # yamllint disable-line rule:line-length
|
|
email: 'authelia@authelia.com'
|
|
groups:
|
|
- 'admins'
|
|
- 'dev'
|
|
... |