21 lines
348 B
PHP
21 lines
348 B
PHP
<?php
|
|
/**
|
|
* Default configuration file. Be careful to respect the PHP syntax.
|
|
*
|
|
* Do not modify this file! Instead, copy it to config.my.php and make
|
|
* your changes there.
|
|
*/
|
|
return [
|
|
/**
|
|
* Database parameters.
|
|
*/
|
|
'db' => [
|
|
'host' => 'localhost'
|
|
,'port' => 3306
|
|
,'schema' => 'pbx'
|
|
,'user' => 'pbx'
|
|
,'pass' => ''
|
|
]
|
|
];
|
|
|