filesystem.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. use think\facade\Env;
  3. return [
  4. // 默认磁盘
  5. 'default' => Env::get('filesystem.driver', 'local'),
  6. // 磁盘列表
  7. 'disks' => [
  8. 'local' => [
  9. 'type' => 'local',
  10. 'root' => app()->getRootPath() . 'public'.DIRECTORY_SEPARATOR.'images',
  11. 'domain' => env('app.domain'),
  12. ],
  13. 'public' => [
  14. // 磁盘类型
  15. 'type' => 'local',
  16. // 磁盘路径
  17. 'root' => app()->getRootPath() . 'public/storage',
  18. // 磁盘路径对应的外部URL路径
  19. 'url' => '/storage',
  20. // 可见性
  21. 'visibility' => 'public',
  22. ],
  23. // 更多的磁盘配置信息
  24. 'qiniu' => [
  25. 'type' => 'qiniu',
  26. 'access_key' => '',
  27. 'secret_key' => '',
  28. 'bucket' => '',
  29. 'domain' => '',
  30. ],
  31. 'oss' => [
  32. 'type' => 'oss',
  33. 'prefix' => '',
  34. 'access_key' => '',
  35. 'secret_key' => '',
  36. 'end_point' => '', // ssl:https://iidestiny.com
  37. 'bucket' => '',
  38. 'is_cname' => false
  39. ],
  40. // 腾讯云配置
  41. 'qcloud' => [
  42. 'type' => 'qcloud',
  43. 'region' => '',
  44. 'credentials' => [
  45. 'appId' => '', // 域名中数字部分
  46. 'secretId' => '',
  47. 'secretKey' => '',
  48. ],
  49. 'bucket' => '',
  50. 'timeout' => 60,
  51. 'connect_timeout' => 60,
  52. 'cdn' => '',
  53. 'scheme' => 'https',
  54. 'read_from_cdn' => false,
  55. ]
  56. ]
  57. ];