blob: 9e1b2043e499d29aa8c8dc71fc6a0b4d14de8f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
# yamllint disable rule:line-length
---
###############################################################
#                         Users Database                      #
###############################################################
# This file can be used if you do not have an LDAP set up.
users:
  authelia:
    disabled: false
    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
  |