firefly-iii/config/filesystems.php

112 lines
3.4 KiB
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
2017-10-21 01:40:00 -05:00
/**
* filesystems.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:44:46 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-10-21 01:40:00 -05:00
*/
2017-09-14 10:40:02 -05:00
declare(strict_types=1);
2017-08-12 03:27:45 -05:00
2015-02-05 21:39:52 -06:00
return [
2015-06-27 01:06:24 -05:00
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
2017-09-09 15:32:11 -05: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 01:06:24 -05:00
|
*/
2015-02-05 21:39:52 -06:00
2017-09-09 15:32:11 -05:00
'default' => env('FILESYSTEM_DRIVER', 'local'),
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05: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-05 21:39:52 -06:00
2017-09-09 15:32:11 -05:00
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05: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 15:32:11 -05:00
| Supported Drivers: "local", "ftp", "s3", "rackspace"
|
2015-06-27 01:06:24 -05:00
*/
2015-02-05 21:39:52 -06:00
'disks' => [
2015-02-05 21:39:52 -06:00
2016-12-09 00:20:48 -06:00
'local' => [
2015-06-27 01:06:24 -05:00
'driver' => 'local',
'root' => storage_path('app'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
2016-05-14 14:49:16 -05:00
'upload' => [
2016-02-22 23:17:04 -06:00
'driver' => 'local',
'root' => storage_path('upload'),
],
2016-05-14 14:49:16 -05:00
'export' => [
2016-02-22 23:17:04 -06:00
'driver' => 'local',
'root' => storage_path('export'),
],
2016-05-14 14:49:16 -05:00
'database' => [
'driver' => 'local',
'root' => storage_path('database'),
],
2016-12-09 00:20:48 -06:00
'seeds' => [
'driver' => 'local',
'root' => base_path('resources/seeds'),
],
'stubs' => [
'driver' => 'local',
'root' => base_path('resources/stubs'),
],
2016-09-15 23:19:40 -05:00
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
2017-09-09 15:32:11 -05:00
'url' => env('APP_URL') . '/storage',
2016-09-15 23:19:40 -05:00
'visibility' => 'public',
],
's3' => [
2015-06-27 01:06:24 -05:00
'driver' => 's3',
2017-09-09 15:32:11 -05:00
'key' => env('AWS_KEY'),
'secret' => env('AWS_SECRET'),
'region' => env('AWS_REGION'),
'bucket' => env('AWS_BUCKET'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
];