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' => '/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',
- ],
-
- ],
- ];
|