6 |--------------------------------------------------------------------------
7 | Default Filesystem Disk
8 |--------------------------------------------------------------------------
10 | Here you may specify the default filesystem disk that should be used
11 | by the framework. A "local" driver, as well as a variety of cloud
12 | based drivers are available for your choosing. Just store away!
14 | Supported: "local", "ftp", "s3", "rackspace"
18 'default' => env('STORAGE_TYPE', 'local'),
21 |--------------------------------------------------------------------------
23 |--------------------------------------------------------------------------
25 | This is the url to where the storage is located for when using an external
26 | file storage service, such as s3, to store publicly accessible assets.
29 'url' => env('STORAGE_URL', false),
32 |--------------------------------------------------------------------------
33 | Default Cloud Filesystem Disk
34 |--------------------------------------------------------------------------
36 | Many applications store files both locally and in the cloud. For this
37 | reason, you may specify a default "cloud" driver here. This driver
38 | will be bound as the Cloud disk implementation in the container.
45 |--------------------------------------------------------------------------
47 |--------------------------------------------------------------------------
49 | Here you may configure as many filesystem "disks" as you wish, and you
50 | may even configure multiple disks of the same driver. Defaults have
51 | been setup for each driver as an example of the required options.
59 'root' => public_path(),
64 'host' => 'ftp.example.com',
65 'username' => 'your-username',
66 'password' => 'your-password',
68 // Optional FTP Settings...
78 'key' => env('STORAGE_S3_KEY', 'your-key'),
79 'secret' => env('STORAGE_S3_SECRET', 'your-secret'),
80 'region' => env('STORAGE_S3_REGION', 'your-region'),
81 'bucket' => env('STORAGE_S3_BUCKET', 'your-bucket'),
85 'driver' => 'rackspace',
86 'username' => 'your-username',
88 'container' => 'your-container',
89 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/',
91 'url_type' => 'publicURL',