-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
35 lines (34 loc) · 1.21 KB
/
Copy pathconfig.example.php
File metadata and controls
35 lines (34 loc) · 1.21 KB
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
<?php
return [
// Tencent Cloud API Credential
'Tencent' => [
'enable' => false,
'SecretId' => 'AK********************', // API Secret ID
'SecretKey' => 'c2**********************', // API Secret Key
],
'CDN' => [
'enable' => false,
// Automatic deployment for Tencent Cloud CDN (China Mainland)
// Only 'running' cdn instances will be updated
'domains' => [
// Only sub1.another-example.com and sub2.another-example-2.com will be updated
'sub1.another-example.com' => [
// This option will disable the expire notification of old certificate when set to true
// You may want to ensure all cdn instances are updated before enabling this
'disableExpireNotification' => false
],
'sub2.another-example-2.com' => [] // All parameters are optional
]
],
// DogeCloud API Credential & Configuration
'dogecloud' => [
'enable' => true,
'credentials' => [
'accessKey' => 'a*********',
'secretKey' => '7*******************'
],
'cdn' => [
'domains' => ['example.com'],
]
]
];