1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- return [
-
- 'app_host' => env('app.host', ''),
-
- 'app_namespace' => '',
-
- 'with_route' => true,
-
- 'with_event' => true,
-
- 'app_express' => true,
-
- 'default_app' => 'wap',
-
- 'default_timezone' => 'Asia/Shanghai',
-
- 'app_map' => [
- "wap"=>"wap",
- "install"=>"install",
- "api"=>"api",
- "admin"=>"admin"
- ],
-
- 'domain_bind' => [],
-
- 'deny_app_list' => ['common'],
-
- 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
-
- 'error_message' => '页面错误!请稍后再试~',
-
- 'show_error_msg' => false,
- ];
|