123456789101112131415161718192021222324252627282930313233 |
- <?php
- return [
- // 默认磁盘
- 'default' => env('filesystem.driver', 'local'),
- // 磁盘列表
- 'disks' => [
- 'local' => [
- 'type' => 'local',
- 'root' => app()->getRuntimePath() . 'storage',
- ],
- 'public' => [
- // 磁盘类型
- 'type' => 'local',
- // 磁盘路径
- 'root' => app()->getRootPath() . 'public/storage',
- // 磁盘路径对应的外部URL路径
- 'url' => '/storage',
- // 可见性
- 'visibility' => 'public',
- ],
- 'aliyun' => [
- 'type' => 'aliyun',
- 'accessId' => 'LTAI4G1xGunUnwkgq48jFWi9',
- 'accessSecret' => '17PK5dY7WnLJR1ejgsopTUBUOzS05S',
- 'bucket' => 'ahwgh',
- 'endpoint' => 'oss-cn-hangzhou.aliyuncs.com',
- 'url' => 'http://oss-cn-hangzhou.aliyuncs.com',
- ],
- // 更多的磁盘配置信息
- ],
- ];
|