36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
|
---
|
||
|
###############################################################
|
||
|
# Users Database #
|
||
|
###############################################################
|
||
|
|
||
|
# This file can be used if you do not have an LDAP set up.
|
||
|
|
||
|
# List of users
|
||
|
users:
|
||
|
john:
|
||
|
displayname: "John Doe"
|
||
|
password: "$6$rounds=500000$jgiCMRyGXzoqpxS3$w2pJeZnnH8bwW3zzvoMWtTRfQYsHbWbD/hquuQ5vUeIyl9gdwBIt6RWk2S6afBA0DPakbeWgD/4SZPiS0hYtU/" # yamllint disable-line rule:line-length
|
||
|
email: john.doe@authelia.com
|
||
|
groups:
|
||
|
- admins
|
||
|
- dev
|
||
|
|
||
|
harry:
|
||
|
displayname: "Harry Potter"
|
||
|
password: "$6$rounds=500000$jgiCMRyGXzoqpxS3$w2pJeZnnH8bwW3zzvoMWtTRfQYsHbWbD/hquuQ5vUeIyl9gdwBIt6RWk2S6afBA0DPakbeWgD/4SZPiS0hYtU/" # yamllint disable-line rule:line-length
|
||
|
email: harry.potter@authelia.com
|
||
|
groups: []
|
||
|
|
||
|
bob:
|
||
|
displayname: "Bob Dylan"
|
||
|
password: "$6$rounds=500000$jgiCMRyGXzoqpxS3$w2pJeZnnH8bwW3zzvoMWtTRfQYsHbWbD/hquuQ5vUeIyl9gdwBIt6RWk2S6afBA0DPakbeWgD/4SZPiS0hYtU/" # yamllint disable-line rule:line-length
|
||
|
email: bob.dylan@authelia.com
|
||
|
groups:
|
||
|
- dev
|
||
|
|
||
|
james:
|
||
|
displayname: "James Dean"
|
||
|
password: "$6$rounds=500000$jgiCMRyGXzoqpxS3$w2pJeZnnH8bwW3zzvoMWtTRfQYsHbWbD/hquuQ5vUeIyl9gdwBIt6RWk2S6afBA0DPakbeWgD/4SZPiS0hYtU/" # yamllint disable-line rule:line-length
|
||
|
email: james.dean@authelia.com
|
||
|
...
|