aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/filesystems.php
diff options
context:
space:
mode:
authorMarvin Borner2018-07-20 16:34:32 +0200
committerMarvin Borner2018-07-20 16:34:32 +0200
commit74cb1477bb921a2378ea22a552b71a48c11e0931 (patch)
tree621ab17315be667c16dad8f3d5f44d67a7a47e8f /config/filesystems.php
parent400591b34d4b0a6288834539808a9dede8a60e3a (diff)
Better API (integrated oauth completely)
Diffstat (limited to 'config/filesystems.php')
-rw-r--r--config/filesystems.php22
1 files changed, 10 insertions, 12 deletions
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',
],
],