[TASK] Config: Add check for environment values
This commit is contained in:
parent
fc8b11283a
commit
19cddd2bc8
1 changed files with 6 additions and 3 deletions
|
@ -21,9 +21,12 @@ $db_user = 'mysqlusername';
|
|||
$db_pass = 'mysqlpassword';
|
||||
$db_data = 'mysqldatabasename';
|
||||
|
||||
// Set this variable to true if you want to use environment variables for mysql
|
||||
$db_use_env_vars = false;
|
||||
if ($db_use_env_vars) {
|
||||
// Use environment variables for mysql if they are set beforehand
|
||||
if (!empty(getenv('MYSQL_HOST'))
|
||||
&& !empty(getenv('MYSQL_PORT'))
|
||||
&& !empty(getenv('MYSQL_USERNAME'))
|
||||
&& !empty(getenv('MYSQL_PASSWORD'))
|
||||
&& !empty(getenv('MYSQL_DATABASE'))) {
|
||||
$db_host = getenv('MYSQL_HOST') . ':' . getenv('MYSQL_PORT');
|
||||
$db_user = getenv('MYSQL_USERNAME');
|
||||
$db_pass = getenv('MYSQL_PASSWORD');
|
||||
|
|
Loading…
Reference in a new issue