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