2015-01-23 13:09:30 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Configuration file. Be careful to respect the PHP syntax.
|
|
|
|
**/
|
|
|
|
$conf = [
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database parameters.
|
|
|
|
**/
|
|
|
|
'db' => [
|
|
|
|
'host' => 'db.verdnatura.es'
|
2015-02-20 07:15:19 +00:00
|
|
|
,'schema' => 'hedera-web'
|
2015-06-30 12:06:19 +00:00
|
|
|
,'user' => 'hedera-web'
|
2015-01-23 13:09:30 +00:00
|
|
|
,'pass' => 'base64pass'
|
|
|
|
]
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The default language.
|
|
|
|
**/
|
|
|
|
,'defaultLang' => 'es'
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
?>
|