Refactor Authelia configuration: remove unused files and update docker-compose to eliminate Authelia service

This commit is contained in:
Mohmmed Elfateh Sabry
2025-08-11 03:23:28 +03:00
parent 8214e92c17
commit 56bb35ecff
5 changed files with 6 additions and 189 deletions

View File

@@ -1,23 +0,0 @@
# authelia/users_database.yml
# User database for Authelia authentication
# Passwords are hashed with argon2id algorithm
# Use: authelia crypto hash generate argon2 --password 'your_password'
users:
# Admin user with full access
admin:
displayname: "Administrator"
password: "$argon2id$v=19$m=65536,t=3,p=4$BpLnfgDsc2WD8F2q$o/vzA4myCqZZ36bUGsDY//8mKUYNZZaR0t1MF//X73A" # password: admin123
email: admin@3launchpad.com
groups:
- admins
- users
# Developer user with dev and user access
developer:
displayname: "Developer"
password: "$argon2id$v=19$m=65536,t=3,p=4$BpLnfgDsc2WD8F2q$o/vzA4myCqZZ36bUGsDY//8mKUYNZZaR0t1MF//X73A" # password: dev123
email: dev@3launchpad.com
groups:
- devs
- users