Web app switched to non-root SQL account.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user