hedera-web/config.php

31 lines
814 B
PHP
Raw Normal View History

<?php
/**
* Configuration file. Be careful to respect the PHP syntax.
*
* 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
2024-03-11 12:23:07 +00:00
*
* Put the password in base64.
2018-01-22 08:52:43 +00:00
*/
2016-04-26 10:54:12 +00:00
return [
/**
* Database parameters.
*/
'db' => [
'host' => 'localhost'
,'port' => 3306
2018-06-12 09:01:15 +00:00
,'schema' => 'hedera'
,'user' => 'hedera-web'
2024-05-09 07:20:07 +00:00
,'pass' => '' // base64 encoded
2020-05-03 20:35:24 +00:00
,'tz' => 'Europe/madrid'
]
];