59 lines
1.9 KiB
PHP
59 lines
1.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
// 默认磁盘
|
|
'default' => 'local',
|
|
// 磁盘列表
|
|
'disks' => [
|
|
'local' => [
|
|
'type' => 'local',
|
|
'root' => app()->getRuntimePath() . 'storage',
|
|
],
|
|
'public' => [
|
|
// 磁盘类型
|
|
'type' => 'local',
|
|
// 磁盘路径
|
|
'root' => app()->getRootPath() . 'public/storage',
|
|
// 磁盘路径对应的外部URL路径
|
|
'url' => '/storage',
|
|
// 可见性
|
|
'visibility' => 'public',
|
|
],
|
|
'image' => [
|
|
// 磁盘类型
|
|
'type' => 'local',
|
|
// 磁盘路径
|
|
'root' => app()->getRootPath() . 'public/storage/images',
|
|
// 磁盘路径对应的外部URL路径
|
|
'url' => '/storage/images',
|
|
// 可见性
|
|
'visibility' => 'public',
|
|
],
|
|
'video' => [
|
|
// 磁盘类型
|
|
'type' => 'local',
|
|
// 磁盘路径
|
|
'root' => app()->getRootPath() . 'public/storage/videos',
|
|
// 磁盘路径对应的外部URL路径
|
|
'url' => '/storage/videos',
|
|
// 可见性
|
|
'visibility' => 'public',
|
|
],
|
|
'video_qiniu' => [
|
|
// 磁盘类型
|
|
'type' => \filesystem\driver\Qiniu::class,
|
|
// bucker 名称
|
|
'bucket' => 'orico-official-website',
|
|
// 访问密钥
|
|
'access_key' => 'dOsTum4a5qvhPTBbZRPX0pIOU7PZWRX7htKjztms',
|
|
// 密钥
|
|
'secret_key' => 'KFxsGbnErkALFfeGdMa8QWTdodJbamMX0iznLe-q',
|
|
// 外部URL
|
|
'base_url' => '//szw73dlk3.hn-bkt.clouddn.com',
|
|
// 路径
|
|
'path' => '/storage/videos',
|
|
]
|
|
// 更多的磁盘配置信息
|
|
],
|
|
];
|