From 74cb1477bb921a2378ea22a552b71a48c11e0931 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Jul 2018 16:34:32 +0200 Subject: Better API (integrated oauth completely) --- config/filesystems.php | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'config/filesystems.php') diff --git a/config/filesystems.php b/config/filesystems.php index 77fa5de..75b5002 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -8,12 +8,14 @@ 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. Just store away! + | by the framework. A "local" driver, as well as a variety of cloud + | based drivers are available for your choosing. Just store away! + | + | Supported: "local", "ftp", "s3", "rackspace" | */ - 'default' => env('FILESYSTEM_DRIVER', 'local'), + 'default' => 'local', /* |-------------------------------------------------------------------------- @@ -26,7 +28,7 @@ return [ | */ - 'cloud' => env('FILESYSTEM_CLOUD', 's3'), + 'cloud' => 's3', /* |-------------------------------------------------------------------------- @@ -37,8 +39,6 @@ return [ | may even configure multiple disks of the same driver. Defaults have | been setup for each driver as an example of the required options. | - | Supported Drivers: "local", "ftp", "sftp", "s3", "rackspace" - | */ 'disks' => [ @@ -51,17 +51,15 @@ return [ 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), - 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ], 's3' => [ 'driver' => 's3', - 'key' => env('AWS_ACCESS_KEY_ID'), - 'secret' => env('AWS_SECRET_ACCESS_KEY'), - 'region' => env('AWS_DEFAULT_REGION'), - 'bucket' => env('AWS_BUCKET'), - 'url' => env('AWS_URL'), + 'key' => 'your-key', + 'secret' => 'your-secret', + 'region' => 'your-region', + 'bucket' => 'your-bucket', ], ], -- cgit v1.2.3