|
*/
- 'default' => 'local',
+ 'default' => env('STORAGE_TYPE', 'local'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Storage URL
+ |--------------------------------------------------------------------------
+ |
+ | This is the url to where the storage is located for when using an external
+ | file storage service, such as s3, to store publicly accessible assets.
+ |
+ */
+ 'url' => env('STORAGE_URL', false),
/*
|--------------------------------------------------------------------------
'local' => [
'driver' => 'local',
- 'root' => public_path(),
+ 'root' => public_path(),
+ ],
+
+ 'local_secure' => [
+ 'driver' => 'local',
+ 'root' => storage_path(),
],
'ftp' => [