You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phpvms/config/filesystems.php

37 lines
838 B

<?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'),
],
'seeds' => [
'driver' => 'local',
'root' => database_path('seeds'),
],
'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',
],
],
];