mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:42:53 +00:00
[TASK] Config: Add MySQL environment variables
This commit is contained in:
parent
33d60efd8e
commit
2cdcd13e68
1 changed files with 9 additions and 0 deletions
|
@ -21,6 +21,15 @@ $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) {
|
||||
$db_host = getenv('MYSQL_HOST') . ':' . getenv('MYSQL_PORT');
|
||||
$db_user = getenv('MYSQL_USERNAME');
|
||||
$db_pass = getenv('MYSQL_PASSWORD');
|
||||
$db_data = getenv('MYSQL_DATABASE');
|
||||
}
|
||||
|
||||
// Set the database connection charset to full Unicode (utf8mb4).
|
||||
// Changing this value will likely corrupt the special characters.
|
||||
// You have been warned.
|
||||
|
|
Loading…
Reference in a new issue