2024-04-03 20:51:10 +08:00
|
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | 应用设置
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
// 应用地址
|
|
|
|
|
'app_host' => env('app.host', ''),
|
|
|
|
|
// 应用的命名空间
|
|
|
|
|
'app_namespace' => '',
|
|
|
|
|
// 是否启用路由
|
|
|
|
|
'with_route' => true,
|
|
|
|
|
// 默认应用
|
|
|
|
|
'default_app' => 'index',
|
|
|
|
|
// 默认时区
|
|
|
|
|
'default_timezone' => 'Asia/Shanghai',
|
|
|
|
|
|
|
|
|
|
// 应用映射(自动多应用模式有效)
|
|
|
|
|
'app_map' => [],
|
|
|
|
|
// 域名绑定(自动多应用模式有效)
|
|
|
|
|
'domain_bind' => [],
|
|
|
|
|
// 禁止URL访问的应用列表(自动多应用模式有效)
|
|
|
|
|
'deny_app_list' => [],
|
|
|
|
|
|
|
|
|
|
// 异常页面的模板文件
|
|
|
|
|
'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
|
|
|
|
|
|
|
|
|
|
// 错误显示信息,非调试模式有效
|
|
|
|
|
'error_message' => '页面错误!请稍后再试~',
|
|
|
|
|
// 显示错误信息
|
2024-04-26 23:16:39 +08:00
|
|
|
|
'show_error_msg' => true,
|
|
|
|
|
'exception_tmpl' => \think\facade\App::getAppPath() . 'view/exception.tpl',
|
2024-04-03 20:51:10 +08:00
|
|
|
|
|
2024-07-07 13:39:52 +08:00
|
|
|
|
'version' => '1011',
|
2024-04-18 19:35:14 +08:00
|
|
|
|
|
2024-05-22 11:24:13 +08:00
|
|
|
|
'dbversion' => '1007'
|
2024-04-03 20:51:10 +08:00
|
|
|
|
];
|