summaryrefslogtreecommitdiff
path: root/authelia/config/users_database.yml.example
blob: 1cd73f3b81b0af8152b9318092b507c924974bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
# Authelia users database example
#
# Copy this file to users_database.yml and fill in real values.
# The actual users_database.yml is gitignored (contains password hashes).
#
# Generate an argon2id hash for a password:
#   docker run --rm authelia/authelia:latest authelia crypto hash generate argon2 --password 'yourpassword'
#
# Group membership controls access if you add group-based rules later.

users:
  admin:
    displayname: Admin
    # Replace with hash from: authelia crypto hash generate argon2 --password 'yourpassword'
    password: '$argon2id$v=19$m=65536,t=3,p=4$REPLACE_WITH_REAL_HASH$REPLACE_WITH_REAL_HASH'
    email: admin@swave.lol
    groups:
      - admins
      - developers

  # Example: add more users here
  # alice:
  #   displayname: Alice
  #   password: '$argon2id$v=19$m=65536,t=3,p=4$...$...'
  #   email: alice@swave.lol
  #   groups:
  #     - developers