Files
ulthon_admin/config/filesystem.php
2019-08-22 13:17:44 +08:00

21 lines
490 B
PHP

<?php
use think\facade\Env;
return [
'default' => Env::get('filesystem.driver', 'local'),
'disks' => [
'local' => [
'type' => 'local',
'root' => app()->getRuntimePath() . 'storage',
],
'public' => [
'type' => 'local',
'root' => app()->getRootPath() . 'public/',
'url' => '/',
'visibility' => 'public',
],
// 更多的磁盘配置信息
],
];