2015-01-23 13:09:30 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Configuration file. Be careful to respect the PHP syntax.
|
2016-01-07 12:58:29 +00:00
|
|
|
*
|
|
|
|
* Do not modify this file! Instead, copy it to config.my.php and make your
|
|
|
|
* your changes there.
|
|
|
|
*
|
|
|
|
* Also, you can use a different config file depending on the virtual host. To
|
|
|
|
* do it, you have to create another configuration file and rename it to
|
|
|
|
* config.[subdomain].php. If no configutation file is found for a certain
|
|
|
|
* domain, the main file will be used. Ej:
|
|
|
|
*
|
|
|
|
* - http://www.mydomain.org -> config.www.php
|
|
|
|
* - http://test.mydomain.org -> config.test.php
|
2015-01-23 13:09:30 +00:00
|
|
|
**/
|
|
|
|
$conf = [
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database parameters.
|
|
|
|
**/
|
|
|
|
'db' => [
|
|
|
|
'host' => 'db.verdnatura.es'
|
2016-01-07 12:58:29 +00:00
|
|
|
,'port' => 3306
|
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'
|
|
|
|
]
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
?>
|