4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-15 05:36:37 +00:00

#2395 -- Fix default database name on Ansible installs.

This commit is contained in:
Buster "Silver Eagle" Neece 2020-02-07 02:13:38 -06:00
parent 64341700e4
commit bddbab4e02
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E

View File

@ -45,8 +45,8 @@ return [
if (!$settings[App\Settings::IS_DOCKER]) {
$defaults['conn']['host'] = $_ENV['db_host'] ?? 'localhost';
$defaults['conn']['port'] = $_ENV['db_port'] ?? '3306';
$defaults['conn']['dbname'] = $_ENV['db_name'] ?? 'app';
$defaults['conn']['user'] = $_ENV['db_username'] ?? 'app';
$defaults['conn']['dbname'] = $_ENV['db_name'] ?? 'azuracast';
$defaults['conn']['user'] = $_ENV['db_username'] ?? 'azuracast';
$defaults['conn']['password'] = $_ENV['db_password'];
}