From 072a3384fd2034f7adc76d6c90744c70bfd2d2c0 Mon Sep 17 00:00:00 2001 From: EZ-Homelab Assistant Date: Fri, 30 Jan 2026 19:18:04 -0500 Subject: [PATCH] fix: update Authelia template with valid password hash - Replace CHANGEME placeholder with proper argon2 hash - Default password is 'admin123' for initial setup - Prevents argon2 decode errors on first startup --- config-templates/authelia/users_database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-templates/authelia/users_database.yml b/config-templates/authelia/users_database.yml index dec2f75..1443893 100644 --- a/config-templates/authelia/users_database.yml +++ b/config-templates/authelia/users_database.yml @@ -5,7 +5,7 @@ users: admin: displayname: "Admin User" - password: "$argon2id$v=19$m=65536,t=3,p=4$CHANGEME" # Replace with your hashed password + password: "$argon2id$v=19$m=65536,t=3,p=4$GABqY9zhf83XWZQM5B8vlg$ADtVApDgotqKUb/sefku8hMYwRBDr5rqKIAuFghKzrM" # Default password: admin123 email: admin@example.com groups: - admins