mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d33d6c2f00
This change implements yamllint and adjusts all yaml files to abide by our linting setup. This excludes config.template.yml as this will be done in an alternate commit.
19 lines
592 B
YAML
19 lines
592 B
YAML
# yamllint disable rule:line-length
|
|
---
|
|
###############################################################
|
|
# Users Database #
|
|
###############################################################
|
|
|
|
# This file can be used if you do not have an LDAP set up.
|
|
|
|
users:
|
|
authelia:
|
|
displayname: "Test User"
|
|
password: "$argon2id$v=19$m=32768,t=1,p=8$eUhVT1dQa082YVk2VUhDMQ$E8QI4jHbUBt3EdsU1NFDu4Bq5jObKNx7nBKSn1EYQxk" # Password is 'authelia'
|
|
email: authelia@authelia.com
|
|
groups:
|
|
- admins
|
|
- dev
|
|
...
|
|
# yamllint enable rule:line-length
|