41 lines
1.6 KiB
PHP
Executable File
41 lines
1.6 KiB
PHP
Executable File
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | 上传配置
|
||
// +----------------------------------------------------------------------
|
||
|
||
return [
|
||
//默认上传模式
|
||
'default' => 'local',
|
||
//上传文件大小
|
||
'filesize' => 102400000,
|
||
//上传文件后缀类型
|
||
'fileExt' => ['jpg', 'jpeg', 'png', 'gif', 'pem', 'mp3', 'wma', 'wav', 'amr', 'mp4', 'key', 'xlsx', 'xls', 'ico', 'apk', 'ipa','wgt','zip','webp'],
|
||
//上传文件类型
|
||
'fileMime' => ['image/jpeg', 'image/gif', 'image/png', 'text/plain', 'audio/mpeg', 'image/vnd.microsoft.icon','application/widget','application/zip'],
|
||
//驱动模式
|
||
'stores' => [
|
||
//本地上传配置
|
||
'local' => [],
|
||
//七牛云上传配置
|
||
'qiniu' => [],
|
||
//oss上传配置
|
||
'oss' => [],
|
||
//cos上传配置
|
||
'cos' => [],
|
||
//obs华为储存
|
||
'obs' => [],
|
||
//ucloud存储
|
||
'us3' => [],
|
||
]
|
||
];
|