add:域名管理first commit

This commit is contained in:
JaguarJack
2020-09-26 15:10:41 +08:00
parent 097b0e1ee5
commit 25c5faf440
13 changed files with 566 additions and 0 deletions

37
catch/domain/config.php Normal file
View File

@@ -0,0 +1,37 @@
<?php
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
return [
'domains' => [
// 默认阿里云
'default' => 'aliyun',
/**
* 阿里云配置
*
*/
'aliyun' => [
'api_domain' => 'http://alidns.aliyuncs.com',
'access_key' => 'LTAI4G2JF2iiJEfnQYm4vhvr',
'access_secret' => 'YDe2sff7uDN1nRPdfvVAFCW6lLaOrC',
],
/**
* 腾讯云配置
*
*/
'qcloud' => [
'access_key' => '',
'access_secret' => '',
]
]
];