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.
8 lines
394 B
8 lines
394 B
// 阿里云OSS配置
|
|
module.exports = {
|
|
region: 'oss-cn-chengdu', // OSS区域,例如 'oss-cn-hangzhou'
|
|
accessKeyId: 'LTAI5tRT6ReeHUdmqFpmLZi7', // 访问密钥ID
|
|
accessKeySecret: 'zTnK27IAphwgCDMmyJzMUsHYxGsDBE', // 访问密钥Secret
|
|
bucket: 'my-supplier-photos', // OSS存储桶名称
|
|
endpoint: 'oss-cn-chengdu.aliyuncs.com' // 注意:不要在endpoint中包含bucket名称
|
|
};
|