bourse stock
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.

44 lines
1.3 KiB

2 months ago
<?php
// +----------------------------------------------------------------------
// | 应用设置
// +----------------------------------------------------------------------
return [
// 应用地址
'app_host' => env('app.host', ''),
// 应用的命名空间
'app_namespace' => '',
// 是否启用路由
'with_route' => true,
// 默认应用
'default_app' => 'index',
// 默认时区
'default_timezone' => 'Asia/Singapore',
// 应用映射(自动多应用模式有效)
'app_map' => [
'bs' => 'home',
'XwkjlLbDcG' => 'admin',
],
'cross_origin' => true, //允许跨域
// 域名绑定(自动多应用模式有效)
'domain_bind' => [],
// 禁止URL访问的应用列表(自动多应用模式有效)
'deny_app_list' => [],
// 异常页面的模板文件
//'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
2 months ago
'exception_tmpl' => base_path().'sorry.html',
2 months ago
// 错误显示信息,非调试模式有效
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
'show_error_msg' => false,
'fields_cache'=>true,
'http_exception_template' => [
// '404' => base_path().'404.html',
],
//多语言
'lang_switch_on'=>true,
];