| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // +----------------------------------------------------------------------
- // | 应用设置
- // +----------------------------------------------------------------------
- use think\facade\Env;
- return [
- // 应用地址
- 'app_host' => Env::get('app.host', ''),
- // 应用的命名空间
- 'app_namespace' => '',
- // 是否启用路由
- 'with_route' => true,
- // 是否启用事件
- 'with_event' => true,
- // 自动多应用模式
- 'auto_multi_app' => true,
- // 应用映射(自动多应用模式有效)
- 'app_map' => ['*'=>'', 'api'=>'api', 'admin'=>'admin','wap'=>'wap'],
- // 域名绑定(自动多应用模式有效)
- 'domain_bind' => [],
- // 禁止URL访问的应用列表(自动多应用模式有效)
- 'deny_app_list' => [],
- // 默认应用
- 'default_app' => 'wap',
- // 默认时区
- 'default_timezone' => 'Asia/Shanghai',
- // 异常页面的模板文件
- 'exception_tmpl' => app()->getRootPath() . 'public/static/exception.tpl',
- // 错误显示信息,非调试模式有效
- 'error_message' => '页面错误!请稍后再试~',
- // 显示错误信息
- 'show_error_msg' => false,
- /// 企业微信机器人
- // redis key @deprecated.
- 'redis_robot_msg_key' => 'qywechatpush',
- 'beanstalk_tube' => 'twong',
- // 亚里士多得
- 'qy_weixin_robot_aristotle' => 'a17b9d56-b566-404b-904e-4476b95dc8d7',
- /// 自动发消息的消息发送者
- 'notice_sender' => '运营中心',
- 'notice_max' => 30, // 每次最多支持的消息数量
- /// 挖矿配置, 每次更新币种后需要重新配置
- // 单次挖矿时长
- 'mining_symbo' => 'DOGE',
- 'mining_time' => [1, 2],
- // 每 @mining_sec_unit 挖币 @mining_num_per_unit
- 'mining_sec_unit' => 1,
- 'mining_num_per_unit' => 0.01,
- // 排行榜 banner 750 x 142 首页 banner 750x375 精品推荐滚动图 750x282
- 'leader_board_banner' => 'http://twongstatic.shotshock.shop/banner_rank_750x142.jpg',
-
- 'header_cs_1' => 'http://twongstatic.shotshock.shop/headers/customer_service_1.jpg',
- 'header_cs_2' => 'http://twongstatic.shotshock.shop/headers/customer_service_2.jpg',
- ];
|