updated config

This commit is contained in:
2023-04-27 06:55:33 +10:00
parent 382a1d0ef8
commit 69144a665f

View File

@@ -31,26 +31,25 @@ return [
'disks' => [ 'disks' => [
'local' => [ 'local' => [
'driver' => 'local', 'driver' => 'local',
'root' => storage_path('app'), 'root' => storage_path('app/public'),
'url' => env('APP_URL') . "/storage",
'public' => true,
], ],
'cdn' => [ 'cdn' => [
'driver' => 'local', 'driver' => 's3',
'root' => storage_path('app/public'), 'key' => env('AWS_PUBLIC_ACCESS_KEY_ID'),
'url' => env('APP_URL') . "/storage", 'secret' => env('AWS_PUBLIC_SECRET_ACCESS_KEY'),
// 'driver' => 's3', 'region' => env('AWS_PUBLIC_DEFAULT_REGION'),
// 'key' => env('AWS_PUBLIC_ACCESS_KEY_ID'), 'bucket' => env('AWS_PUBLIC_BUCKET'),
// 'secret' => env('AWS_PUBLIC_SECRET_ACCESS_KEY'), 'url' => env('AWS_PUBLIC_URL'),
// 'region' => env('AWS_PUBLIC_DEFAULT_REGION'), 'endpoint' => env('AWS_PUBLIC_ENDPOINT'),
// 'bucket' => env('AWS_PUBLIC_BUCKET'), 'use_path_style_endpoint' => env('AWS_PUBLIC_USE_PATH_STYLE_ENDPOINT', false),
// 'url' => env('AWS_PUBLIC_URL'), 'throw' => false,
// 'endpoint' => env('AWS_PUBLIC_ENDPOINT'),
// 'use_path_style_endpoint' => env('AWS_PUBLIC_USE_PATH_STYLE_ENDPOINT', false),
// 'throw' => false,
'public' => true, 'public' => true,
// 'options' => [ 'options' => [
// 'ACL' => '', 'ACL' => '',
// ] ]
], ],
'private' => [ 'private' => [