app.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. use think\facade\Env;
  12. // +----------------------------------------------------------------------
  13. // | 应用设置
  14. // +----------------------------------------------------------------------
  15. return [
  16. // +----------------------------------------------------------------------
  17. // | 系统相关设置
  18. // +----------------------------------------------------------------------
  19. // 后台公共模板
  20. 'admin_base_layout' => Env::get('app_path') . 'admin/view/layout.html',
  21. // 插件目录路径
  22. 'plugin_path' => Env::get('root_path'). 'plugins/',
  23. // 数据包目录路径
  24. 'packet_path' => Env::get('root_path'). 'packet/',
  25. // 文件上传路径
  26. 'upload_path' => Env::get('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads',
  27. // 文件上传临时目录
  28. 'upload_temp_path' => Env::get('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR . 'temp/',
  29. // +----------------------------------------------------------------------
  30. // | 用户相关设置
  31. // +----------------------------------------------------------------------
  32. // 最大缓存用户数
  33. 'user_max_cache' => 1000,
  34. // 管理员用户ID
  35. 'user_admin' => 1,
  36. // 应用名称
  37. 'app_name' => '',
  38. // 应用地址
  39. 'app_host' => '',
  40. // 应用调试模式
  41. 'app_debug' => true,
  42. // 应用Trace
  43. 'app_trace' => false,
  44. // 是否支持多模块
  45. 'app_multi_module' => true,
  46. // 入口自动绑定模块
  47. 'auto_bind_module' => false,
  48. // 注册的根命名空间
  49. 'root_namespace' => ['plugins' => Env::get('root_path'). 'plugins/'],
  50. // 默认输出类型
  51. 'default_return_type' => 'html',
  52. // 默认AJAX 数据返回格式,可选json xml ...
  53. 'default_ajax_return' => 'json',
  54. // 默认JSONP格式返回的处理方法
  55. 'default_jsonp_handler' => 'jsonpReturn',
  56. // 默认JSONP处理方法
  57. 'var_jsonp_handler' => 'callback',
  58. // 默认时区
  59. 'default_timezone' => 'Asia/Shanghai',
  60. // 是否开启多语言
  61. 'lang_switch_on' => false,
  62. // 默认全局过滤方法 用逗号分隔多个
  63. 'default_filter' => '',
  64. // 默认语言
  65. 'default_lang' => 'zh-cn',
  66. // 应用类库后缀
  67. 'class_suffix' => false,
  68. // 控制器类后缀
  69. 'controller_suffix' => false,
  70. // +----------------------------------------------------------------------
  71. // | 模块设置
  72. // +----------------------------------------------------------------------
  73. // 默认模块名
  74. 'default_module' => 'index',
  75. // 禁止访问模块
  76. 'deny_module_list' => ['common'],
  77. // 默认控制器名
  78. 'default_controller' => 'Index',
  79. // 默认操作名
  80. 'default_action' => 'index',
  81. // 默认验证器
  82. 'default_validate' => '',
  83. // 默认的空模块名
  84. 'empty_module' => '',
  85. // 默认的空控制器名
  86. 'empty_controller' => 'Error',
  87. // 操作方法前缀
  88. 'use_action_prefix' => false,
  89. // 操作方法后缀
  90. 'action_suffix' => '',
  91. // 自动搜索控制器
  92. 'controller_auto_search' => false,
  93. // +----------------------------------------------------------------------
  94. // | URL设置
  95. // +----------------------------------------------------------------------
  96. // PATHINFO变量名 用于兼容模式
  97. 'var_pathinfo' => 's',
  98. // 兼容PATH_INFO获取
  99. 'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'],
  100. // pathinfo分隔符
  101. 'pathinfo_depr' => '/',
  102. // HTTPS代理标识
  103. 'https_agent_name' => '',
  104. // IP代理获取标识
  105. 'http_agent_ip' => 'X-REAL-IP',
  106. // URL伪静态后缀
  107. 'url_html_suffix' => 'html',
  108. // URL普通方式参数 用于自动生成
  109. 'url_common_param' => false,
  110. // URL参数方式 0 按名称成对解析 1 按顺序解析
  111. 'url_param_type' => 0,
  112. // 是否开启路由延迟解析
  113. 'url_lazy_route' => false,
  114. // 是否强制使用路由
  115. 'url_route_must' => false,
  116. // 合并路由规则
  117. 'route_rule_merge' => false,
  118. // 路由是否完全匹配
  119. 'route_complete_match' => false,
  120. // 使用注解路由
  121. 'route_annotation' => false,
  122. // 域名根,如thinkphp.cn
  123. 'url_domain_root' => '',
  124. // 是否自动转换URL中的控制器和操作名
  125. 'url_convert' => true,
  126. // 默认的访问控制器层
  127. 'url_controller_layer' => 'controller',
  128. // 表单请求类型伪装变量
  129. 'var_method' => '_method',
  130. // 表单ajax伪装变量
  131. 'var_ajax' => '_ajax',
  132. // 表单pjax伪装变量
  133. 'var_pjax' => '_pjax',
  134. // 是否开启请求缓存 true自动缓存 支持设置请求缓存规则
  135. 'request_cache' => false,
  136. // 请求缓存有效期
  137. 'request_cache_expire' => null,
  138. // 全局请求缓存排除规则
  139. 'request_cache_except' => [],
  140. // 是否开启路由缓存
  141. 'route_check_cache' => false,
  142. // 路由缓存的Key自定义设置(闭包),默认为当前URL和请求类型的md5
  143. 'route_check_cache_key' => '',
  144. // 路由缓存类型及参数
  145. 'route_cache_option' => [],
  146. // 默认跳转页面对应的模板文件
  147. 'dispatch_success_tmpl' => Env::get('app_path') . 'admin/view/dispatch_jump.tpl',
  148. 'dispatch_error_tmpl' => Env::get('app_path') . 'admin/view/dispatch_jump.tpl',
  149. // 异常页面的模板文件
  150. 'exception_tmpl' => Env::get('think_path') . 'tpl/think_exception.tpl',
  151. // 错误显示信息,非调试模式有效
  152. 'error_message' => '页面错误!请稍后再试~',
  153. // 显示错误信息
  154. 'show_error_msg' => false,
  155. // 异常处理handle类 留空使用 \think\exception\Handle
  156. 'exception_handle' => '',
  157. ];