Web app switched to non-root SQL account.

This commit is contained in:
2026-01-12 12:02:58 +02:00
parent fb80cb78eb
commit 3f7a2d2d61
3 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
// NOTE: In Docker, the DB host is the service name (e.g., "db"), not "localhost".
$DB_HOST = getenv('DB_HOST') ?: 'db';
$DB_USER = getenv('DB_USER') ?: 'root';
$DB_PASS = getenv('DB_PASS') ?: 'rootpass';
$DB_USER = getenv('DB_USER') ?: 'passman_app';
$DB_PASS = getenv('DB_PASS') ?: 'passman_app_pw';
$DB_NAME = getenv('DB_NAME') ?: 'pwd_mgr';
// Create a DB connection.