forked from verdnatura/hedera-web
25 lines
302 B
PHP
25 lines
302 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Configuration file. Be careful to respect the PHP syntax.
|
||
|
**/
|
||
|
$conf = [
|
||
|
|
||
|
/**
|
||
|
* Database parameters.
|
||
|
**/
|
||
|
'db' => [
|
||
|
'host' => 'db.verdnatura.es'
|
||
|
,'schema' => 'hedera'
|
||
|
,'user' => 'root'
|
||
|
,'pass' => 'base64pass'
|
||
|
]
|
||
|
|
||
|
/**
|
||
|
* The default language.
|
||
|
**/
|
||
|
,'defaultLang' => 'es'
|
||
|
|
||
|
];
|
||
|
|
||
|
?>
|