add authelia

This commit is contained in:
L4RM4ND
2023-03-02 00:37:37 +01:00
parent 1db8400e79
commit c37f78182c
5 changed files with 162 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
---
###############################################################
# 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
...