38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
return[
|
|
'mysql' => [
|
|
'host' => '127.0.0.1',
|
|
'port' => 3306,
|
|
'username' => 'customerservice',
|
|
'password' => 'ExXLFhBBpFx5M4XA',
|
|
'dbname' => 'customerservice',
|
|
'charset' => 'utf8mb4',
|
|
|
|
],
|
|
|
|
'redis' => [
|
|
'host' => '127.0.0.1',
|
|
'port' => 6379,
|
|
'options' => [
|
|
'cluster' => 'redis',
|
|
'parameters' => [
|
|
'password' => 'Y6HGDReirPceUFwG',
|
|
// 开启长连接,默认关闭
|
|
'persistent' => 1,
|
|
'read_write_timeout' => 0
|
|
]
|
|
]
|
|
],
|
|
|
|
// 日志目录.
|
|
'logDir' => '../logs/',
|
|
'site_url' => 'https://kf.dpbpz.com/',
|
|
'app_id' => '5a7553560c9cf51c105678f3',
|
|
'game_host' => 'http://192.168.106.11:9999',
|
|
//'chat_msg_dir' => '/www/logs/chat-msg/',
|
|
'chat_msg_dir' => '/www/wwwroot/hhylkefu.com/runtime/chat-msg/',
|
|
'open_chatmsg' => true,
|
|
'chat_table_num' => 100,
|
|
];
|
|
|