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 'root' => storage_path(),
69 'host' => 'ftp.example.com',
70 'username' => 'your-username',
71 'password' => 'your-password',
73 // Optional FTP Settings...
83 'key' => env('STORAGE_S3_KEY', 'your-key'),
84 'secret' => env('STORAGE_S3_SECRET', 'your-secret'),
85 'region' => env('STORAGE_S3_REGION', 'your-region'),
86 'bucket' => env('STORAGE_S3_BUCKET', 'your-bucket'),
90 'driver' => 'rackspace',
91 'username' => 'your-username',
93 'container' => 'your-container',
94 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/',
96 'url_type' => 'publicURL',