feat: move miniapp server project
This commit is contained in:
parent
4a940f28ba
commit
96d9063b13
178 changed files with 9699 additions and 5044 deletions
47
config/app.php
Normal file
47
config/app.php
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | 应用设置
|
||||
// +----------------------------------------------------------------------
|
||||
return [
|
||||
'APP_DEBUG' => env('APP_DEBUG', false),
|
||||
// 应用地址
|
||||
'app_host' => env('app.host', ''),
|
||||
// 应用的命名空间
|
||||
'app_namespace' => '',
|
||||
// 是否启用路由
|
||||
'with_route' => false,
|
||||
// 是否启用事件
|
||||
'with_event' => true,
|
||||
// 默认应用
|
||||
'default_app' => 'index',
|
||||
// 默认时区
|
||||
'default_timezone' => 'Asia/Shanghai',
|
||||
|
||||
// 应用映射(自动多应用模式有效)
|
||||
'app_map' => [],
|
||||
// 域名绑定(自动多应用模式有效)
|
||||
'domain_bind' => [],
|
||||
// 禁止URL访问的应用列表(自动多应用模式有效)
|
||||
'deny_app_list' => [],
|
||||
|
||||
// 异常页面的模板文件
|
||||
'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
|
||||
|
||||
// 错误显示信息,非调试模式有效
|
||||
'error_message' => '页面错误!请稍后再试~',
|
||||
// 显示错误信息
|
||||
'show_error_msg' => true,
|
||||
//
|
||||
'ENCODE_KEY' => env('app.ENCODE_KEY', 'QDVTGN48@@#11aa'),
|
||||
'APPID' => 'wx2a7607969ec65027',
|
||||
'SECERT_KEY' => '941a33ebe76bf4f84eb8a03834b4d831',
|
||||
'envName' => 'prod',
|
||||
|
||||
// 微信支付
|
||||
'MCH_ID' => '1717190820',
|
||||
'PAY_KEY' => 'Dollar01234567890abcdefghijklmno',
|
||||
'REFUND_CERT_FILE' => '/wx_ca/apiclient_cert.pem',
|
||||
'REFUND_KEY_FILE' => '/wx_ca/apiclient_key.pem',
|
||||
'CERT_SERIAL_NO' => '', // 暂时没用到
|
||||
'PAY_NOTIFY_URL_SHOP' => 'https://civcar.zhonganonline.top/zhihuitb/index.php/api/v1/pay_notify',
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue