base.php 310 B

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