| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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>
- // +----------------------------------------------------------------------
- return [
- // +----------------------------------------------------------------------
- // | 应用设置
- // +----------------------------------------------------------------------
- // 当前系统版本
- 'version' => 'v1.0.1',
- // 加密盐
- 'salt' => '~NickBai!@#',
- // socket server
- 'socket' => 'wss://ky.281570.com:9101',
- // 管理员登录时间
- 'save_time' => 86400,
- 'cache' => [
- 'type' => 'File',
- 'path' => CACHE_PATH,
- 'prefix' => '',
- 'expire' => 0,
- ],
- // 应用命名空间
- 'app_namespace' => 'app',
- 'exception_tmpl' => '',
- 'http_exception_template' => [
- // 定义404错误的重定向页面地址
- '404' => APP_PATH . '404.html',
- // 还可以定义其它的HTTP status
- '401' => APP_PATH . '404.html',
- '403' => APP_PATH . '404.html',
- ],
- // 应用调试模式
- 'app_debug' => true,
- // 应用Trace
- 'app_trace' => true
- ];
|