- Add traefik.docker.network=traefik-network label to homepage service - Prevent Traefik from using wrong IP from homelab-network - Resolve 504 Gateway Timeout issues after authentication - Update various docker-compose configurations and templates - Clean up unused configuration files
21 lines
597 B
YAML
21 lines
597 B
YAML
# Authelia Users Database
|
|
# Copy to /opt/stacks/authelia/users_database.yml
|
|
# Generate password hashes with: docker run authelia/authelia:latest authelia crypto hash generate argon2 --password 'yourpassword'
|
|
|
|
users:
|
|
${AUTHELIA_ADMIN_USER}:
|
|
displayname: "${AUTHELIA_ADMIN_USER}"
|
|
password: "${AUTHELIA_ADMIN_PASSWORD}"
|
|
email: "${AUTHELIA_ADMIN_EMAIL}"
|
|
groups:
|
|
- admins
|
|
- users
|
|
|
|
# Example: Additional user
|
|
# user1:
|
|
# displayname: "User One"
|
|
# password: "$argon2id$v=19$m=65536,t=3,p=4$CHANGEME"
|
|
# email: user1@example.com
|
|
# groups:
|
|
# - users
|