mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
fix installation for beta5
This commit is contained in:
@@ -11,17 +11,17 @@ return [
|
||||
'use_cron_trigger_cleanup' => nexus_env('USE_CRON_TRIGGER_CLEANUP', false),
|
||||
|
||||
'mysql' => [
|
||||
'host' => nexus_env('MYSQL_HOST', '127.0.0.1'),
|
||||
'port' => nexus_env('MYSQL_PORT', 3306),
|
||||
'username' => nexus_env('MYSQL_USERNAME', 'root'),
|
||||
'password' => nexus_env('MYSQL_PASSWORD', ''),
|
||||
'database' => nexus_env('MYSQL_DATABASE', 'nexusphp'),
|
||||
'host' => nexus_env('DB_HOST', '127.0.0.1'),
|
||||
'port' => nexus_env('DB_PORT', 3306),
|
||||
'username' => nexus_env('DB_USERNAME', 'root'),
|
||||
'password' => nexus_env('DB_PASSWORD', ''),
|
||||
'database' => nexus_env('DB_DATABASE', 'nexusphp'),
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'host' => nexus_env('REDIS_HOST', '127.0.0.1'),
|
||||
'port' => nexus_env('REDIS_PORT', 6379),
|
||||
'database' => nexus_env('REDIS_DATABASE', 0),
|
||||
'database' => nexus_env('REDIS_DB', 0),
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user