# 七牛云配置
cloud:
  storage:
    type: 1
    domain: xxx #绑定的域名
    prefix: xxx #路径前缀(可为空)
    accessKey: xxx #七牛云为accessKey
    secretKey: xxx #七牛secretKey
    bucketName: xxx #存储空间名

# 阿里云配置
cloud:
  storage:
    type: 2
    domain: jaas-cloud-img1.xcjaas.com #绑定的域名
    prefix: test #路径前缀(可为空)
    accessKey: LTAIFcoWKczv5cXa #阿里云AccessKeyId
    secretKey: LZi6nJkrgBMdqI0DIW8LYttBNFflIz #阿里云AccessKeySecret
    bucketName: jaas-cloud-img1 #存储空间名
    endPoint: http://oss-cn-beijing.aliyuncs.com #阿里云地域节点

# 腾讯云配置
cloud:
  storage:
    type: 3
    domain: xxx #绑定的域名
    prefix: xxx #路径前缀(可为空)
    accessKey: xxx #腾讯云SecretId
    secretKey: xxx #腾讯云SecretKey
    bucketName: xxx #存储空间名
    appId: xxx #腾讯云AppId
    region: xxx #腾讯云COS所属地区

# 本地配置
cloud:
  storage:
    type: 4
    domain: xxx #绑定的域名
    prefix: xxx #路径前缀(可为空)
    localPath: xxx #本地上传存储目录
