12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- //文件存储供应商
- "Provider": "Minio",
- "OSSConfigs": [
- //Minio
- {
- "Provider": "Minio",
- "Endpoint": "127.0.0.1:9006",
- "Region": "",
- "AccessKey": "minio",
- "SecretKey": "minio",
- "IsEnableHttps": false,
- "IsEnableCache": true,
- "BucketName": "admin",
- "Url": "", //文件外链
- "Enable": true,
- "Md5": false
- },
- //阿里云
- {
- "Provider": "Aliyun",
- "Endpoint": "oss-cn-shenzhen.aliyuncs.com",
- "Region": "",
- "AccessKey": "",
- "SecretKey": "",
- "IsEnableHttps": true,
- "IsEnableCache": true,
- "BucketName": "admin",
- "Url": "",
- "Enable": false,
- "Md5": false
- },
- //腾讯云
- {
- "Provider": "QCloud",
- "Endpoint": "", //AppId
- "Region": "",
- "AccessKey": "",
- "SecretKey": "",
- "IsEnableHttps": true,
- "IsEnableCache": true,
- "BucketName": "admin",
- "Url": "",
- "Enable": false,
- "Md5": false
- },
- //七牛
- {
- "Provider": "Qiniu",
- "Endpoint": "",
- "Region": "",
- "AccessKey": "",
- "SecretKey": "",
- "IsEnableHttps": true,
- "IsEnableCache": true,
- "BucketName": "admin",
- "Url": "",
- "Enable": false,
- "Md5": false
- },
- //华为云
- {
- "Provider": "HuaweiCloud",
- "Endpoint": "",
- "Region": "",
- "AccessKey": "",
- "SecretKey": "",
- "IsEnableHttps": true,
- "IsEnableCache": true,
- "BucketName": "admin",
- "Url": "",
- "Enable": false,
- "Md5": false
- }
- ]
- }
|