mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
return [
|
||
// 默认磁盘
|
||
'default' => 'local',
|
||
// 磁盘列表
|
||
'disks' => [
|
||
'local' => [
|
||
'type' => 'local',
|
||
'root' => app()->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'storage',
|
||
],
|
||
'public' => [
|
||
// 磁盘类型
|
||
'type' => 'local',
|
||
// 磁盘路径
|
||
'root' => app()->getRootPath() . 'public' . DIRECTORY_SEPARATOR . 'storage',
|
||
// 磁盘路径对应的外部URL路径
|
||
'url' => '/storage',
|
||
// 可见性
|
||
'visibility' => 'public',
|
||
],
|
||
],
|
||
]; |