app.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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' => 'admin',
  14. // 默认时区
  15. 'default_timezone' => 'Asia/Shanghai',
  16. // 应用映射(自动多应用模式有效)
  17. 'app_map' => [],
  18. // 域名绑定(自动多应用模式有效)
  19. 'domain_bind' => [],
  20. // 禁止URL访问的应用列表(自动多应用模式有效)
  21. 'deny_app_list' => [],
  22. // 默认全局过滤方法 用逗号分隔多个
  23. 'default_filter' => 'htmlspecialchars',
  24. // 异常页面的模板文件
  25. 'exception_tmpl' => app()->getRootPath() . '/public/tpl/think_exception.tpl',
  26. // 默认跳转页面对应的模板文件【新增】
  27. 'dispatch_success_tmpl' => app()->getRootPath() . '/public/tpl/dispatch_jump.tpl',
  28. 'dispatch_error_tmpl' => app()->getRootPath() . '/public/tpl/dispatch_jump.tpl',
  29. // 错误显示信息,非调试模式有效
  30. 'error_message' => '😔错误~',
  31. // 显示错误信息
  32. 'show_error_msg' => false,
  33. 'page_size' => 20,
  34. 'session_user' => 'gougu_user',
  35. 'session_admin' => 'gougu_admin',
  36. 'http_exception_template' => [
  37. // 登录失败
  38. 401 => public_path() . 'tpl/401.html',
  39. // 禁止访问
  40. 403 => public_path() . 'tpl/403.html',
  41. // 无法找到文件
  42. 404 => public_path() . 'tpl/404.html',
  43. // 无权限访问
  44. 405 => public_path() . 'tpl/405.html',
  45. // 找不到数据
  46. 406 => public_path() . 'tpl/406.html',
  47. //内部服务器错误
  48. 500 => public_path() . 'tpl/500.html',
  49. ]
  50. ];