webman后台
This commit is contained in:
20
dafuweng-webman/config/filesystem.php
Normal file
20
dafuweng-webman/config/filesystem.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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',
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user