]> git.mxchange.org Git - friendica.git/commitdiff
[TASK] Config: Add MySQL environment variables
authorMarcus Müller <marcusmueller@protonmail.com>
Tue, 17 Apr 2018 16:37:59 +0000 (18:37 +0200)
committerGitHub <noreply@github.com>
Tue, 17 Apr 2018 16:37:59 +0000 (18:37 +0200)
htconfig.php

index f4ea4d295e7ce076812643aa5f2484ddabe367a5..c078103e81207426233a518c50fe240868714b97 100644 (file)
@@ -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.