21 lines
549 B
PHP
21 lines
549 B
PHP
<?php
|
||
/**
|
||
* 文件系统配置(BuildAdmin Upload 所需)
|
||
*/
|
||
|
||
return [
|
||
'default' => env('filesystem.driver', 'local'),
|
||
'disks' => [
|
||
'local' => [
|
||
'type' => 'local',
|
||
'root' => rtrim(runtime_path(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . 'storage',
|
||
],
|
||
'public' => [
|
||
'type' => 'local',
|
||
'root' => rtrim(base_path(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . 'public',
|
||
'url' => '/storage',
|
||
'visibility' => 'public',
|
||
],
|
||
],
|
||
];
|