diff --git a/config/filesystems.php b/config/filesystems.php index 37d8fca..e9d9dbd 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -9,7 +9,7 @@ return [ | | Here you may specify the default filesystem disk that should be used | by the framework. The "local" disk, as well as a variety of cloud - | based disks are available to your application for file storage. + | based disks are available to your application. Just store away! | */ @@ -20,11 +20,11 @@ return [ | Filesystem Disks |-------------------------------------------------------------------------- | - | Below you may configure as many filesystem disks as necessary, and you - | may even configure multiple disks for the same driver. Examples for - | most supported storage drivers are configured here for reference. + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. | - | Supported drivers: "local", "ftp", "sftp", "s3" + | Supported Drivers: "local", "ftp", "sftp", "s3" | */ @@ -32,19 +32,16 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => storage_path('app/private'), - 'serve' => true, + 'root' => storage_path('app'), 'throw' => false, - 'report' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), - 'url' => rtrim(env('APP_URL', 'http://localhost'), '/').'/storage', + 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, - 'report' => false, ], 's3' => [ @@ -57,7 +54,6 @@ return [ 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, - 'report' => false, ], ],