base.php 289 B

123456789101112131415161718192021222324
  1. <?php
  2. # 一些基本配置
  3. $config['base'] = array
  4. (
  5. # 后台头部菜单
  6. 'top' => 'main/project_id-7',
  7. # 定义队列
  8. 'queue' => array
  9. (
  10. 'method' => 'db',
  11. 'host' => '172.26.102.182',
  12. 'port' => '6379',
  13. ),
  14. );
  15. # 模板配置
  16. $config['template'] = array
  17. (
  18. );
  19. return $config;