chunk_file_upload.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 猫巷
  5. * Email:catlane@foxmail.com
  6. * Date: 2019/5/29
  7. * Time: 9:26 AM
  8. */
  9. return [
  10. 'disks' => [
  11. 'local' => [
  12. 'driver' => 'local' ,
  13. 'root' => storage_path ( 'app' ) ,
  14. ] ,
  15. 'public' => [
  16. 'driver' => 'local' ,
  17. 'root' => storage_path ( 'app/public' ) ,
  18. ] ,
  19. 'qiniu_live' => [//七牛云
  20. 'driver' => 'qiniu' ,//如果是七牛云空间,必填qiniu
  21. 'domains' => [
  22. 'default' => '****' , //你的七牛域名
  23. 'https' => '' , //你的HTTPS域名
  24. 'custom' => '****', //你的自定义域名
  25. ] ,
  26. 'access_key' => '****' , //AccessKey
  27. 'secret_key' => '*****' , //SecretKey
  28. 'bucket' => '***' , //Bucket名字
  29. 'url' => '*******' , // 填写文件访问根url
  30. 'qn_area'=> 'http://up.qiniu.com',
  31. ]
  32. ] ,
  33. 'default' => [
  34. 'disk' => 'public' ,//默认磁盘
  35. 'extensions' => 'jpg,png,mp4' ,//后缀
  36. 'mimeTypes' => 'image/*,video/*' ,//类型
  37. 'fileSizeLimit' => 10737418240 ,//上传文件限制总大小,默认10G,默认单位为b
  38. 'fileNumLimit' => '5' ,//文件上传总数量
  39. 'saveType' => 'json', //单文件默认为字符串,多文件上传存储格式,json:['a.jpg','b.jpg']
  40. ]
  41. ];