diff --git a/lib/config.php b/lib/config.php index 9d535c6..776b061 100644 --- a/lib/config.php +++ b/lib/config.php @@ -6,11 +6,11 @@ declare(strict_types=1); return [ 'db' => [ - 'host' => getenv('GEIZKRAGEN_DB_HOST') ?: 'localhost', + 'host' => getenv('GEIZKRAGEN_DB_HOST') ?: 'HOST', 'port' => (int)(getenv('GEIZKRAGEN_DB_PORT') ?: 3306), - 'user' => getenv('GEIZKRAGEN_DB_USER') ?: 'User', - 'pass' => getenv('GEIZKRAGEN_DB_PASS') ?: 'password', - 'name' => getenv('GEIZKRAGEN_DB_NAME') ?: 'DB-Name', + 'user' => getenv('GEIZKRAGEN_DB_USER') ?: 'USER', + 'pass' => getenv('GEIZKRAGEN_DB_PASS') ?: 'PASSWORD', + 'name' => getenv('GEIZKRAGEN_DB_NAME') ?: 'DATABASE', 'charset' => getenv('GEIZKRAGEN_DB_CHARSET') ?: 'utf8mb4', ], ];