mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
20 lines
726 B
YAML
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
|
||
|
...
|