12345678910111213141516171819202122232425 |
- <?php
- # 一些基本配置
- $config['base'] = array
- (
- # 后台头部菜单
- 'top' => 'main/project_id-3',
- # 定义队列
- 'queue' => array
- (
- 'method' => 'redis',
- 'host' => '172.26.102.182',
- 'port' => '6379',
- 'key' => false,
- ),
- );
- # 模板配置
- $config['template'] = array
- (
-
- );
- return $config;
|