You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
624 B
18 lines
624 B
<?php
|
|
|
|
/** @deprecated This file is deprecated and will be removed in the next release! */
|
|
|
|
declare(strict_types=1);
|
|
|
|
// To change or overwrite settings, edit them in the UI (/admin/config) or create a config.php file!
|
|
|
|
return [
|
|
// No config here, see documentation for values that can be set
|
|
// https://engelsystem.de/doc/admin/configuration/
|
|
'database' => [
|
|
'host' => 'localhost', // The database host to connect to
|
|
'database' => 'dbname', // Name of the MySQL database
|
|
'username' => 'dbuser', // Database user
|
|
'password' => 'password', // Password for the database user
|
|
],
|
|
];
|
|
|