app.php 869 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. return [
  3. // 应用命名空间
  4. 'app_namespace' => '',
  5. // 应用快速访问
  6. 'app_express' => true,
  7. // 是否启用路由
  8. 'with_route' => true,
  9. // 超级用户账号
  10. 'super_user' => 'admin',
  11. // 默认应用
  12. 'default_app' => 'index',
  13. // 默认时区
  14. 'default_timezone' => 'Asia/Shanghai',
  15. // 应用映射(自动多应用模式有效)
  16. 'app_map' => [],
  17. // 域名绑定(自动多应用模式有效)
  18. 'domain_bind' => [],
  19. // 禁止URL访问的应用列表(自动多应用模式有效)
  20. 'deny_app_list' => [],
  21. // 非调试模式时显示错误的消息
  22. 'error_message' => '页面错误!请稍后再试~',
  23. // 调试模式异常页面的模板文件
  24. 'exception_tmpl' => app()->getBasePath() . 'admin/view/error.tpl',
  25. ];