- 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
15 lines
624 B
YAML
15 lines
624 B
YAML
###############################################################
|
|
# Users Database #
|
|
###############################################################
|
|
# Template - Replace with your actual user information
|
|
# Generate password hash with: docker run authelia/authelia:latest authelia crypto hash generate pbkdf2 --password 'yourpassword'
|
|
|
|
users:
|
|
admin: # Change this username
|
|
displayname: "Administrator"
|
|
password: "GENERATE_NEW_PASSWORD_HASH" # Replace with actual hash
|
|
email: your-email@example.com # Replace with your email
|
|
groups:
|
|
- admins
|
|
- users
|