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