forked from verdnatura/hedera-web
67 lines
894 B
PHP
Executable File
67 lines
894 B
PHP
Executable File
<?php
|
|
/**
|
|
* Configuration file. Be careful to respect the PHP syntax.
|
|
**/
|
|
$conf = array (
|
|
|
|
/**
|
|
* The default language.
|
|
**/
|
|
'defaultLang' => 'es'
|
|
|
|
/**
|
|
* Compatible browsers.
|
|
**/
|
|
,'browser' => array
|
|
(
|
|
'Firefox' => 4.0
|
|
,'Iceweasel' => 4.0
|
|
,'IE' => 10.0
|
|
,'Chrome' => 7.0
|
|
,'Opera' => 11.6
|
|
)
|
|
|
|
/**
|
|
* Database parameters.
|
|
**/
|
|
,'db' => array
|
|
(
|
|
'host' => 'db.verdnatura.es'
|
|
,'name' => 'hedera'
|
|
,'user' => 'root'
|
|
,'pass' => 'base64pass'
|
|
)
|
|
|
|
/**
|
|
* The guest user.
|
|
**/
|
|
,'guest' => array
|
|
(
|
|
'user' => 'visitor'
|
|
,'pass' => 'base64pass'
|
|
)
|
|
|
|
/**
|
|
* Whether to force the use of https on the client.
|
|
**/
|
|
,'https' => FALSE
|
|
|
|
/**
|
|
* The lifetime of the session cookie, in days.
|
|
**/
|
|
,'cookieLife' => 15
|
|
|
|
/**
|
|
* The module to load if none is specified.
|
|
**/
|
|
,'defaultModule' => 'home'
|
|
|
|
/**
|
|
* The directory where images are located.
|
|
**/
|
|
,'imageDir' => '/image/cache'
|
|
|
|
);
|
|
|
|
?>
|