-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.php
45 lines (40 loc) · 1.11 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
return [
//全局账号相关配置
'accounts'=>[
[
'name'=>'A1英国偷渡',
'client_id'=>'165523e0-xxxx-xxxx-xxxx-b470e514a093',
'tenant_id'=>'8a4a847d-xxxx-xxxx-xxxx-c8a9bdd9ce6f',
'client_secret'=>'ox_vt_SJ-_xxxxxxx.mfG20gNIrpx2e_XR',
'sku_ids'=>[
'a1学生'=>'314c4481-f395-4525-be8b-2ec4bb1e9d91',
'a1教职工'=>'94763226-9b3c-4e75-a931-5c89701abe66'
],
],
[
'name'=>'A1新加坡无限订阅',
'client_id'=>'18bf17cc-xxxx-xxxx-xxxx-5ee172bfa1e5',
'tenant_id'=>'8e6fda94-xxxx-xxxx-xxxx-8df28ac1df0e',
'client_secret'=>'bpMBqTIwRFE_xxxxxxxxxxxxx_5uw163.~',
'sku_ids'=>[
'a1教职工'=>'94763226-9b3c-4e75-a931-5c89701abe66'
],
],
],
'locations'=>[//自己配置,写了几个我常用的
'中国'=>'CN',
'台湾'=>'TW',
'香港'=>'HK',
'日本'=>'JP',
'美国'=>'US',
'新加坡'=>'SG',
'英国'=>'GB'
],
//后台相关配置
'admin'=>[
'username'=>'admin',
'password'=>'passwordmd5',//自行输入密码 https://md5jiami.51240.com/ 将32位 小写结果填入
'invitation_code_num'=>'8',//随机生成的邀请码位数
],
];