filesystem.php 1.4 KB

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