69 lines
2.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | 作者:修缘 联系QQ278896498 QQ群1054861244
// | 声明:未经作者许可,禁止倒卖等商业运营,违者必究
// | 另接php业务网站制作、代理后台、gm后台、支付对接等
// +----------------------------------------------------------------------
// | 创建时间: 2022/1/4 23:12
// +----------------------------------------------------------------------
return [
/**
* gm接口配置参数
* Author修缘
* 联系QQ278896498
* Date: 2022/1/5 22:46
*/
'gm' => [
'ip' => '127.0.0.1', // 服务器ip 默认本地ip、远程用外网ip
'port' => 8561, //http请求端口
'sign' => 'JavaS02Pcc025..', //接口通讯sign
'password' => 'JDJ5JDEwJGFkb2JOa2VoUzVxbzR4blNwTlZva2VENkFNdjZpL3pLY2lKdWd2end4U3B3b3dxS0hkUmlh', //gm工具密码
],
/**
* CDK配置参数
* Author修缘
* 联系QQ278896498
* Date: 2022/1/6 13:59
*/
'cdk' => [
'length' => 10, //cdk卡密长度(不要改)
'order_url' => 'https://www.baidu.com/', //兑换页面 卡密购买按钮链接
'mail_title' => 'CDK兑换已到账', // 邮件兑换类型 邮件标题
'mail_content' => '您已兑换成功,请查收!!!感谢老铁的支持!!!', // 邮件兑换类型 邮件内容描述
],
/**
* 代理提现配置参数
* Author修缘
* 联系QQ278896498
* Date: 2022/1/9 17:48
*/
'commission' => 0, // 代理结算手续费比例 如填1 则扣除结算金额的1%作为手续费
'retain' => 0, // 代理账户保留金额 这部分是不可结算的
/**
* 大区配置
* Author修缘
* 联系QQ278896498
* Date: 2022/1/12 22:43
*/
'server' => [
[
'id' => 1000, // 大区ID
'name' => '一区', // 大区名字
],
[
'id' => 1001,
'name' => '二区',
],
[
'id' => 1002,
'name' => '三区',
],
],
];