You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB

1 year ago
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 应用设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 应用地址
  7. 'app_host' => env('app.host', ''),
  8. // 应用的命名空间
  9. 'app_namespace' => '',
  10. // 是否启用路由
  11. 'with_route' => true,
  12. // 默认应用
  13. 'default_app' => 'index',
  14. // 默认时区
  15. 'default_timezone' => 'Asia/Shanghai',
  16. // 应用映射(自动多应用模式有效)
  17. 'app_map' => [],
  18. // 域名绑定(自动多应用模式有效)
  19. 'domain_bind' => [],
  20. // 禁止URL访问的应用列表(自动多应用模式有效)
  21. 'deny_app_list' => [],
  22. // 异常页面的模板文件
  23. 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
  24. // 错误显示信息,非调试模式有效
  25. 'error_message' => '页面错误!请稍后再试~',
  26. // 显示错误信息
  27. 'show_error_msg' => true,
  28. ];