123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- use crmeb\basic\BaseAuth;
- use think\facade\Env;
- return [
-
- 'app_host' => Env::get('app.host', ''),
-
- 'app_namespace' => '',
-
- 'with_route' => true,
-
- 'with_event' => true,
-
- 'app_map' => [],
-
- 'domain_bind' => [],
-
- 'deny_app_list' => [],
-
- 'default_app' => '',
- 'app_express' => true,
-
- 'default_timezone' => 'Asia/Shanghai',
-
- 'exception_tmpl' => app()->getRootPath() . 'public/statics/exception.tpl',
-
- 'error_message' => '页面错误!请稍后再试~',
-
- 'show_error_msg' => false,
-
- 'auth_crmeb' => BaseAuth::AUTH_CRMEB
- ];
|