api.emotionhero.com/config/_default.php

15 lines
373 B
PHP
Raw Normal View History

2016-09-01 12:15:17 +02:00
<?php
// base config which is overwritten by individual
// environment-dependant configuration files
$config = [
'debug' => false,
'db' => [
'dsn' => null,
'username' => null,
'password' => null
2016-09-01 15:08:43 +02:00
],
'secret_key' => 'AqeZFu4MWMZ=P2H_SMgS%%7y9aas52%$^eQSQ%HQbYqU(fDo',
'jwt_lifetime' => 86400 * 365 * 5, // five years should be enough for now...
2016-09-01 12:15:17 +02:00
];
return $config;