12345678910111213141516171819202122 |
- <?php
- # 一些基本配置
- $config['base'] = array
- (
- # 后台头部菜单
- 'top' => 'main/project_id',
- # 小程序内容端接口地址
- 'applet_content' => 'http://cm.5dev.cn/applet_on/content/v1/',
- # 定义队列
- 'queue' => array
- (
- 'method' => 'redis',
- 'host' => '172.26.102.182',
- 'port' => '6379',
- ),
- );
- return $config;
|