16 lines
589 B
Plaintext
16 lines
589 B
Plaintext
|
|
---
|
||
|
|
# Authelia user database template.
|
||
|
|
# setup.sh copies this to ${OBMP_DATA_ROOT}/authelia/users_database.yml only
|
||
|
|
# if that file does not already exist. The bcrypt hash below is the default
|
||
|
|
# demo account (username: openbmp). Change it after first login, or generate
|
||
|
|
# a new hash with:
|
||
|
|
# docker run --rm authelia/authelia:4.38 \
|
||
|
|
# authelia crypto hash generate bcrypt --password '<new-password>'
|
||
|
|
users:
|
||
|
|
openbmp:
|
||
|
|
displayname: "OpenBMP Demo"
|
||
|
|
password: "$2b$12$KQiQo1bYWqadD51HlgfgO.M1JfVlA5qP2YVRoBMTPmWq6osPljUTW"
|
||
|
|
email: demo@apodacalab.com
|
||
|
|
groups:
|
||
|
|
- admins
|