25 lines
900 B
PHP
25 lines
900 B
PHP
<?php
|
|
|
|
|
|
$globalConfig['cloudflare'] = [
|
|
'email' => 'your@email.com',
|
|
'api_keys' => 'your_keys',
|
|
'base_domain' => 'abc.com',
|
|
'secondary_domain' => 'second.abc.com',
|
|
];
|
|
|
|
$globalConfig['dingtalk_token'] = 'your_token';
|
|
|
|
$globalConfig['COS'] = [
|
|
'bucket' => 'bucket', //存储桶名称 格式:BucketName-APPID
|
|
'secretId' => 'secretId', //替换为用户的 secretId,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
|
|
'secretKey' => 'secretKey', //替换为用户的 secretKey,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
|
|
'region' => 'region', //替换为用户的 region,已创建桶归属的region可以在控制台查看,https://console.cloud.tencent.com/cos5/bucket
|
|
];
|
|
|
|
|
|
$globalConfig['OCR'] = [
|
|
'secretId' => 'secretId',
|
|
'secretKey' => 'secretKey',
|
|
];
|