phpvms/config/filesystems.php
2018-08-26 16:40:04 +00:00

32 lines
724 B
PHP
Executable File

<?php
return [
'default' => 'local',
// This is the filesystem the uploaded files should go to
'public_files' => 'public',
'cloud' => 's3',
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => public_path('uploads'),
'url' => '/uploads',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => 'your-key',
'secret' => 'your-secret',
'region' => 'your-region',
'bucket' => 'your-bucket',
],
],
];