3. users.yml

users:
  username:
      password: $6$rounds=50000$zg8VwzwE…………………………….OTQ98NuLKfzBcoQpSfRn0
      displayname: username
      email: [email protected]
      groups:
          - admins
          - dev
      disabled: false

# do note line 2 is the username
# line 4 is the name that is displayed
#line 3 is currently the sha512 but authelias default config is argon2.
#password can be generated by command but if you've set up email notifications its easier to just reset via email

Jozef
Author