这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
colin 826a210c86 feat(oss-management): Use a configured object storage provider 6 months ago
..
LINGYUN/Abp/OssManagement/Tencent feat(oss-management): Use a configured object storage provider 6 months ago
Microsoft/Extensions/DependencyInjection fix(oss): 修复扩展接口名称错误 1 year ago
FodyWeavers.xml feat(cloud): add support tencent cloud 4 years ago
FodyWeavers.xsd fix(cors): fix cors request not returned custom headers 4 years ago
LINGYUN.Abp.OssManagement.Tencent.csproj upgrade: upgrade abp framework to 9.0.4 1 year ago
README.EN.md feat(docs): 添加Oss管理模块文档 1 year ago
README.md feat(docs): 添加Oss管理模块文档 1 year ago

README.md

LINGYUN.Abp.OssManagement.Tencent

腾讯云oss容器接口

功能

  • 实现基于腾讯云COS的对象存储管理
  • 支持文件上传、下载和删除等基本操作
  • 支持文件分片上传和断点续传
  • 集成腾讯云COS的访问控制和安全机制
  • 支持对象过期管理
  • 支持临时密钥访问

配置使用

模块按需引用

[DependsOn(typeof(AbpOssManagementTencentCloudModule))]
public class YouProjectModule : AbpModule
{
  // other
}

配置说明

需要配置以下关键信息:

  • SecretId:腾讯云访问密钥ID
  • SecretKey:腾讯云访问密钥密码
  • Region:地域信息
  • AppId:应用ID
  • Bucket:存储桶名称
  • SecurityToken:可选的临时安全令牌

注意事项

  • 建议使用子账号密钥进行访问
  • 建议开启服务端加密
  • 建议配置适当的存储桶策略
  • 建议启用日志记录功能

链接