12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Mead
- * Date: 2019/10/18
- * Time: 9:13 PM
- */
- const Config = [
- // 是否开启调试
- 'debug' => true,
- // 分布式 是否允许 Register服务
- 'is_register_run' => true,
- // 分布式 内网主机ip
- 'gateway_lanIp' => '0.0.0.0',
- // 分布式 Register服务地址
- 'registerAddress' => '127.0.0.1:1238',
- 'db' => [
- 'host' => '127.0.0.1',
- 'port' => 3306,
- 'user' => 'xiaobanma',
- 'password' => 'H3HZs6x25pM5m4CG',
- 'db_name' => 'xiaobanma'
- ],
- 'redis' => [
- 'host' => '127.0.0.1',
- 'port' => 6379,
- 'database' => 0
- ],
- 'mongodb' => [
- 'url' => 'mongodb://127.0.0.1:27017',
- 'database' => 'xiaobanma'
- ],
- 'gateway' => [
- 'is_run' => true,
- 'port' => 8383,
- 'count' => 4,
- 'pingInterval' => 130,
- 'pingNotResponseLimit' => 1,
- ],
- 'business' => [
- 'is_run' => true,
- 'count' => 4
- ],
- 'close_order_api_url' => 'https://api.weilaibike.com/api/relay/order/auto-close?key=D7sM78f1kOOndRMgX9mkwHYG8SzHFW6AZbPXAwAfZuLgyxbFHji99SZF2tP9PJ0r'
- ];
|