filesystem.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. return [
  16. // 默认磁盘
  17. 'default' => 'local',
  18. // 磁盘列表
  19. 'disks' => [
  20. 'local' => [
  21. 'type' => 'local',
  22. 'root' => app()->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'storage',
  23. ],
  24. 'public' => [
  25. // 磁盘类型
  26. 'type' => 'local',
  27. // 磁盘路径
  28. 'root' => app()->getRootPath() . 'public' . DIRECTORY_SEPARATOR . 'storage',
  29. // 磁盘路径对应的外部URL路径
  30. 'url' => '/storage',
  31. // 可见性
  32. 'visibility' => 'public',
  33. ],
  34. ],
  35. ];