-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.php
executable file
·57 lines (56 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
<?php
return [
'info' => [
'domain' => 'https://focapi.feiyang.ac.cn',
'appdomain' => 'https://focapp.feiyang.ac.cn',
'adminreg' => false,
'weeklyset' => 5,
'ticketcooldown' => false,
'ticketcooldowndays' => 1
],
'token' => [
'salt' => '会长爱玩原神'
],
'qiniu' => [
'accessKey' => '[email protected]',
'secretKey' => '[email protected]',
'bucket' => 'fyforum',
'domain' => 'https://qncdn.feiyang.ac.cn',
'uploadUrl' => 'https://up-z2.qiniup.com/'
],
'db' => [
'host' => 'host',
'dbname' => 'name',
'username' => 'name',
'password' => 'pass'
],
'wechat' => [
'api_url' => 'https://api.weixin.qq.com/sns/jscode2session',
'app_id' => '[email protected]',
'app_secret' => '[email protected]'
],
'email' => [
'smtp_host' => 'smtp.wjlnb.com',
'smtp_port' => 465,
'username' => '[email protected]',
'password' => '[email protected]'
],
'sms' => [
'secret_id' => '[email protected]',
'secret_key' => '[email protected]',
'sms_sdk_appid' => '114514',
'template_ids' => [
'registration' => '621159',
'migration' => '621159',
'reassign' => '2262137',
'changephone' => '2262129',
'assign_to_technician' => '1115370',
'assign_to_user' => '1115369',
'completion' => '1115372',
'repair_completion' => '2294549',
'beclosed' => '2272153'
],
'sign_name' => '飞扬维修'
]
];
?>