work/config/storage.php
vilson 260a754db7 增加文件上传至第三方存储
Signed-off-by: vilson <545522390@qq.com>
2019-07-13 10:24:30 +08:00

23 lines
999 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'storage_type' => 'local', //local:本地qiniu七牛oss阿里云oss
'storage_local_exts' => 'png,jpg,rar,doc,icon,mp4,zip,gif,jpeg,bmp,webp,mp4,m3u8,rmvb,avi,swf,3gp,mkv,flv,txt,docx,pages,epub,pdf,numbers,csv,xls,xlsx,keynote,ppt,pptx,mp3,wav,wma,ogg,aac,flac;', //支持上传的文件格式
// 可用的第三方资源配置
'qiniu' => [ //七牛云
'storage_qiniu_bucket' => 'static',
'storage_qiniu_domain' => 'example.xyz',
'storage_qiniu_access_key' => 'example',
'storage_qiniu_secret_key' => 'example',
'storage_qiniu_is_https' => 'https',//域名前缀
],
'oss' => [ // 阿里云oss
'storage_oss_bucket' => 'vilson-static',
'storage_oss_endpoint' => 'oss-cn-shenzhen.aliyuncs.com',
'storage_oss_domain' => 'example.xyz',
'storage_oss_keyid' => 'example',
'storage_oss_secret' => 'example',
'storage_oss_is_https' => 'https',//域名前缀
],
];