2015-02-06 04:39:52 +01:00
|
|
|
<?php
|
2017-09-14 17:40:02 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-08-12 10:27:45 +02:00
|
|
|
|
2015-02-06 04:39:52 +01:00
|
|
|
return [
|
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Filesystem Disk
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify the default filesystem disk that should be used
|
2017-09-09 22:32:11 +02:00
|
|
|
| by the framework. The "local" disk, as well as a variety of cloud
|
|
|
|
| based disks are available to your application. Just store away!
|
2015-06-27 08:06:24 +02:00
|
|
|
|
|
|
|
|
*/
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2017-09-09 22:32:11 +02:00
|
|
|
'default' => env('FILESYSTEM_DRIVER', 'local'),
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Cloud Filesystem Disk
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Many applications store files both locally and in the cloud. For this
|
|
|
|
| reason, you may specify a default "cloud" driver here. This driver
|
|
|
|
| will be bound as the Cloud disk implementation in the container.
|
|
|
|
|
|
|
|
|
*/
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2017-09-09 22:32:11 +02:00
|
|
|
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Filesystem Disks
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may configure as many filesystem "disks" as you wish, and you
|
|
|
|
| may even configure multiple disks of the same driver. Defaults have
|
|
|
|
| been setup for each driver as an example of the required options.
|
|
|
|
|
|
2017-09-09 22:32:11 +02:00
|
|
|
| Supported Drivers: "local", "ftp", "s3", "rackspace"
|
|
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
*/
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2016-01-08 15:59:21 +01:00
|
|
|
'disks' => [
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2016-12-09 07:20:48 +01:00
|
|
|
'local' => [
|
2015-06-27 08:06:24 +02:00
|
|
|
'driver' => 'local',
|
2016-01-08 15:59:21 +01:00
|
|
|
'root' => storage_path('app'),
|
2015-06-27 08:06:24 +02:00
|
|
|
],
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2016-05-14 21:49:16 +02:00
|
|
|
'upload' => [
|
2016-02-23 06:17:04 +01:00
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('upload'),
|
|
|
|
],
|
2016-05-14 21:49:16 +02:00
|
|
|
'export' => [
|
2016-02-23 06:17:04 +01:00
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('export'),
|
|
|
|
],
|
2016-05-14 21:49:16 +02:00
|
|
|
'database' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('database'),
|
|
|
|
],
|
2016-12-09 07:20:48 +01:00
|
|
|
'seeds' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => base_path('resources/seeds'),
|
|
|
|
],
|
2016-12-27 19:34:27 +01:00
|
|
|
'stubs' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => base_path('resources/stubs'),
|
|
|
|
],
|
|
|
|
|
2016-09-16 06:19:40 +02:00
|
|
|
'public' => [
|
|
|
|
'driver' => 'local',
|
|
|
|
'root' => storage_path('app/public'),
|
2017-09-09 22:32:11 +02:00
|
|
|
'url' => env('APP_URL') . '/storage',
|
2016-09-16 06:19:40 +02:00
|
|
|
'visibility' => 'public',
|
2016-01-08 15:59:21 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
's3' => [
|
2015-06-27 08:06:24 +02:00
|
|
|
'driver' => 's3',
|
2017-09-09 22:32:11 +02:00
|
|
|
'key' => env('AWS_KEY'),
|
|
|
|
'secret' => env('AWS_SECRET'),
|
|
|
|
'region' => env('AWS_REGION'),
|
|
|
|
'bucket' => env('AWS_BUCKET'),
|
2015-06-27 08:06:24 +02:00
|
|
|
],
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2015-06-27 08:06:24 +02:00
|
|
|
],
|
2015-02-06 04:39:52 +01:00
|
|
|
|
|
|
|
];
|