审查视图

application/config.php 10.9 KB
王智 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\Env;

return [
    // +----------------------------------------------------------------------
    // | 应用设置
    // +----------------------------------------------------------------------
    // 应用命名空间
王智 authored
19
    'app_namespace' => 'app',
王智 authored
20
    // 应用调试模式
王智 authored
21
    'app_debug' => Env::get('app.debug', true),
王智 authored
22
    // 应用Trace
王智 authored
23
    'app_trace' => Env::get('app.trace', false),
王智 authored
24
    // 应用模式状态
王智 authored
25
    'app_status' => '',
王智 authored
26
    // 是否支持多模块
王智 authored
27
    'app_multi_module' => true,
王智 authored
28
    // 入口自动绑定模块
王智 authored
29
    'auto_bind_module' => false,
王智 authored
30
    // 注册的根命名空间
王智 authored
31
    'root_namespace' => [],
王智 authored
32
    // 扩展函数文件
王智 authored
33
    'extra_file_list' => [THINK_PATH . 'helper' . EXT],
王智 authored
34
    // 默认输出类型
王智 authored
35
    'default_return_type' => 'html',
王智 authored
36
    // 默认AJAX 数据返回格式,可选json xml ...
王智 authored
37
    'default_ajax_return' => 'json',
王智 authored
38
    // 默认JSONP格式返回的处理方法
王智 authored
39
    'default_jsonp_handler' => 'jsonpReturn',
王智 authored
40
    // 默认JSONP处理方法
王智 authored
41
    'var_jsonp_handler' => 'callback',
王智 authored
42
    // 默认时区
王智 authored
43
    'default_timezone' => 'PRC',
王智 authored
44
    // 是否开启多语言
王智 authored
45
    'lang_switch_on' => true,
王智 authored
46
    // 默认全局过滤方法 用逗号分隔多个
王智 authored
47
    'default_filter' => '',
王智 authored
48
    // 默认语言
王智 authored
49
    'default_lang' => 'zh-cn',
王智 authored
50
    // 应用类库后缀
王智 authored
51
    'class_suffix' => false,
王智 authored
52
    // 控制器类后缀
王智 authored
53
    'controller_suffix' => false,
王智 authored
54 55 56 57
    // +----------------------------------------------------------------------
    // | 模块设置
    // +----------------------------------------------------------------------
    // 默认模块名
王智 authored
58
    'default_module' => 'index',
王智 authored
59
    // 禁止访问模块
王智 authored
60
    'deny_module_list' => ['common', 'admin'],
王智 authored
61
    // 默认控制器名
王智 authored
62
    'default_controller' => 'Index',
王智 authored
63
    // 默认操作名
王智 authored
64
    'default_action' => 'index',
王智 authored
65
    // 默认验证器
王智 authored
66
    'default_validate' => '',
王智 authored
67
    // 默认的空控制器名
王智 authored
68
    'empty_controller' => 'Error',
王智 authored
69
    // 操作方法后缀
王智 authored
70
    'action_suffix' => '',
王智 authored
71 72 73 74 75 76
    // 自动搜索控制器
    'controller_auto_search' => true,
    // +----------------------------------------------------------------------
    // | URL设置
    // +----------------------------------------------------------------------
    // PATHINFO变量名 用于兼容模式
王智 authored
77
    'var_pathinfo' => 's',
王智 authored
78
    // 兼容PATH_INFO获取
王智 authored
79
    'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'],
王智 authored
80
    // pathinfo分隔符
王智 authored
81
    'pathinfo_depr' => '/',
王智 authored
82
    // URL伪静态后缀
王智 authored
83
    'url_html_suffix' => 'html',
王智 authored
84
    // URL普通方式参数 用于自动生成
王智 authored
85
    'url_common_param' => false,
王智 authored
86
    // URL参数方式 0 按名称成对解析 1 按顺序解析
王智 authored
87
    'url_param_type' => 0,
王智 authored
88
    // 是否开启路由
王智 authored
89
    'url_route_on' => true,
王智 authored
90
    // 路由使用完整匹配
王智 authored
91
    'route_complete_match' => false,
王智 authored
92
    // 路由配置文件(支持配置多个)
王智 authored
93
    'route_config_file' => ['route'],
王智 authored
94
    // 是否强制使用路由
王智 authored
95
    'url_route_must' => false,
王智 authored
96
    // 域名部署
王智 authored
97
    'url_domain_deploy' => false,
王智 authored
98
    // 域名根,如thinkphp.cn
王智 authored
99
    'url_domain_root' => '',
王智 authored
100
    // 是否自动转换URL中的控制器和操作名
王智 authored
101
    'url_convert' => true,
王智 authored
102
    // 默认的访问控制器层
王智 authored
103
    'url_controller_layer' => 'controller',
王智 authored
104
    // 表单请求类型伪装变量
王智 authored
105
    'var_method' => '_method',
王智 authored
106
    // 表单ajax伪装变量
王智 authored
107
    'var_ajax' => '_ajax',
王智 authored
108
    // 表单pjax伪装变量
王智 authored
109
    'var_pjax' => '_pjax',
王智 authored
110
    // 是否开启请求缓存 true自动缓存 支持设置请求缓存规则
王智 authored
111
    'request_cache' => false,
王智 authored
112
    // 请求缓存有效期
王智 authored
113
    'request_cache_expire' => null,
王智 authored
114 115 116
    // +----------------------------------------------------------------------
    // | 模板设置
    // +----------------------------------------------------------------------
王智 authored
117
    'template' => [
王智 authored
118
        // 模板引擎类型 支持 php think 支持扩展
王智 authored
119
        'type' => 'Think',
王智 authored
120
        // 模板路径
王智 authored
121
        'view_path' => '',
王智 authored
122
        // 模板后缀
王智 authored
123
        'view_suffix' => 'html',
王智 authored
124
        // 模板文件名分隔符
王智 authored
125
        'view_depr' => DS,
王智 authored
126
        // 模板引擎普通标签开始标记
王智 authored
127
        'tpl_begin' => '{',
王智 authored
128
        // 模板引擎普通标签结束标记
王智 authored
129
        'tpl_end' => '}',
王智 authored
130 131 132
        // 标签库标签开始标记
        'taglib_begin' => '{',
        // 标签库标签结束标记
王智 authored
133 134
        'taglib_end' => '}',
        'tpl_cache' => true,
王智 authored
135 136
    ],
    // 视图输出字符串内容替换,留空则会自动进行计算
王智 authored
137
    'view_replace_str' => [
王智 authored
138
        '__PUBLIC__' => '',
王智 authored
139 140
        '__ROOT__' => '',
        '__CDN__' => '',
王智 authored
141 142
    ],
    // 默认跳转页面对应的模板文件
王智 authored
143 144
    'dispatch_success_tmpl' => APP_PATH . 'common' . DS . 'view' . DS . 'tpl' . DS . 'dispatch_jump.tpl',
    'dispatch_error_tmpl' => APP_PATH . 'common' . DS . 'view' . DS . 'tpl' . DS . 'dispatch_jump.tpl',
王智 authored
145 146 147 148
    // +----------------------------------------------------------------------
    // | 异常及错误设置
    // +----------------------------------------------------------------------
    // 异常页面的模板文件
王智 authored
149
    'exception_tmpl' => APP_PATH . 'common' . DS . 'view' . DS . 'tpl' . DS . 'think_exception.tpl',
王智 authored
150
    // 错误显示信息,非调试模式有效
王智 authored
151
    'error_message' => '你所浏览的页面暂时无法访问',
王智 authored
152
    // 显示错误信息
王智 authored
153
    'show_error_msg' => false,
王智 authored
154
    // 异常处理handle类 留空使用 \think\exception\Handle
王智 authored
155
    'exception_handle' => '',
王智 authored
156 157 158
    // +----------------------------------------------------------------------
    // | 日志设置
    // +----------------------------------------------------------------------
王智 authored
159
    'log' => [
王智 authored
160
        // 日志记录方式,内置 file socket 支持扩展
王智 authored
161
        'type' => 'File',
王智 authored
162
        // 日志保存目录
王智 authored
163
        'path' => LOG_PATH,
王智 authored
164 165 166 167 168 169
        // 日志记录级别
        'level' => [],
    ],
    // +----------------------------------------------------------------------
    // | Trace设置 开启 app_trace 后 有效
    // +----------------------------------------------------------------------
王智 authored
170
    'trace' => [
王智 authored
171 172 173 174 175 176
        // 内置Html Console 支持扩展
        'type' => 'Html',
    ],
    // +----------------------------------------------------------------------
    // | 缓存设置
    // +----------------------------------------------------------------------
王智 authored
177
    'cache' => [
王智 authored
178
        // 驱动方式
王智 authored
179
        'type' => 'File',
王智 authored
180
        // 缓存保存目录
王智 authored
181
        'path' => CACHE_PATH,
王智 authored
182 183 184 185 186 187 188 189
        // 缓存前缀
        'prefix' => '',
        // 缓存有效期 0表示永久缓存
        'expire' => 0,
    ],
    // +----------------------------------------------------------------------
    // | 会话设置
    // +----------------------------------------------------------------------
王智 authored
190 191
    'session' => [
        'id' => '',
王智 authored
192 193 194
        // SESSION_ID的提交变量,解决flash上传跨域
        'var_session_id' => '',
        // SESSION 前缀
王智 authored
195
        'prefix' => 'think',
王智 authored
196
        // 驱动方式 支持redis memcache memcached
王智 authored
197
        'type' => '',
王智 authored
198
        // 是否自动开启 SESSION
王智 authored
199
        'auto_start' => true,
王智 authored
200 201 202 203
    ],
    // +----------------------------------------------------------------------
    // | Cookie设置
    // +----------------------------------------------------------------------
王智 authored
204
    'cookie' => [
王智 authored
205
        // cookie 名称前缀
王智 authored
206
        'prefix' => '',
王智 authored
207
        // cookie 保存时间
王智 authored
208
        'expire' => 0,
王智 authored
209
        // cookie 保存路径
王智 authored
210
        'path' => '/',
王智 authored
211
        // cookie 有效域名
王智 authored
212
        'domain' => '',
王智 authored
213
        //  cookie 启用安全传输
王智 authored
214
        'secure' => false,
王智 authored
215
        // httponly设置
王智 authored
216
        'httponly' => '',
王智 authored
217 218 219 220
        // 是否使用 setcookie
        'setcookie' => true,
    ],
    //分页配置
王智 authored
221 222 223
    'paginate' => [
        'type' => 'bootstrap',
        'var_page' => 'page',
王智 authored
224 225 226
        'list_rows' => 15,
    ],
    //验证码配置
王智 authored
227
    'captcha' => [
王智 authored
228
        // 验证码字符集合
王智 authored
229
        'codeSet' => '2345678abcdefhijkmnpqrstuvwxyzABCDEFGHJKLMNPQRTUVWXY',
王智 authored
230 231 232 233 234
        // 验证码字体大小(px)
        'fontSize' => 18,
        // 是否画混淆曲线
        'useCurve' => false,
        //使用中文验证码
王智 authored
235
        'useZh' => false,
王智 authored
236
        // 验证码图片高度
王智 authored
237
        'imageH' => 40,
王智 authored
238
        // 验证码图片宽度
王智 authored
239
        'imageW' => 130,
王智 authored
240
        // 验证码位数
王智 authored
241
        'length' => 4,
王智 authored
242
        // 验证成功后是否重置
王智 authored
243
        'reset' => true
王智 authored
244 245 246 247
    ],
    // +----------------------------------------------------------------------
    // | Token设置
    // +----------------------------------------------------------------------
王智 authored
248
    'token' => [
王智 authored
249
        // 驱动方式
王智 authored
250
        'type' => 'Mysql',
王智 authored
251
        // 缓存前缀
王智 authored
252
        'key' => 'i3d6o32wo8fvs1fvdpwens',
王智 authored
253 254 255
        // 加密方式
        'hashalgo' => 'ripemd160',
        // 缓存有效期 0表示永久缓存
王智 authored
256
        'expire' => 0,
王智 authored
257 258
    ],
    //FastAdmin配置
王智 authored
259
    'fastadmin' => [
王智 authored
260
        //是否开启前台会员中心
王智 authored
261
        'usercenter' => true,
王智 authored
262 263 264
        //会员注册验证码类型email/mobile/wechat/text/false
        'user_register_captcha' => 'text',
        //登录验证码
王智 authored
265
        'login_captcha' => true,
王智 authored
266
        //登录失败超过10次则1天后重试
王智 authored
267
        'login_failure_retry' => true,
王智 authored
268
        //是否同一账号同一时间只能在一个地方登录
王智 authored
269
        'login_unique' => false,
王智 authored
270
        //是否开启IP变动检测
王智 authored
271
        'loginip_check' => true,
王智 authored
272
        //登录页默认背景图
王智 authored
273
        'login_background' => "",
王智 authored
274
        //是否启用多级菜单导航
王智 authored
275
        'multiplenav' => false,
王智 authored
276
        //是否开启多选项卡(仅在开启多级菜单时起作用)
王智 authored
277
        'multipletab' => true,
王智 authored
278
        //后台皮肤,为空时表示使用skin-black-green
王智 authored
279
        'adminskin' => '',
王智 authored
280
        //后台是否启用面包屑
王智 authored
281
        'breadcrumb' => false,
王智 authored
282
        //是否允许未知来源的插件压缩包
王智 authored
283
        'unknownsources' => false,
王智 authored
284
        //插件启用禁用时是否备份对应的全局文件
王智 authored
285
        'backup_global_files' => true,
王智 authored
286
        //是否开启后台自动日志记录
王智 authored
287
        'auto_record_log' => true,
王智 authored
288
        //插件纯净模式,插件启用后是否删除插件目录的application、public和assets文件夹
王智 authored
289
        'addon_pure_mode' => true,
王智 authored
290
        //允许跨域的域名,多个以,分隔
王智 authored
291
        'cors_request_domain' => 'http://obituaries.tvue.brofirst.cn,http://obituariesseller.tvue.brofirst.cn,192.168.1.106,192.168.0.127',
王智 authored
292
        //版本号
王智 authored
293
        'version' => '1.2.0.20201008_beta',
王智 authored
294
        //API接口地址
王智 authored
295
        'api_url' => 'https://api.fastadmin.net',
王智 authored
296 297
    ],
];