firefly-iii/config/filesystems.php

115 lines
3.9 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
2020-03-17 11:06:30 -05:00
* Copyright (c) 2019 james@firefly-iii.org.
2017-10-21 01:40:00 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2017-10-21 01:40:00 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 01:40:00 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2017-10-21 01:40:00 -05:00
*/
2017-09-14 10:40:02 -05:00
declare(strict_types=1);
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
'default' => env('FILESYSTEM_DISK', 'local'),
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.
|
| Supported: "local", "ftp", "s3", "rackspace", "null", "azure", "copy",
| "dropbox", "gridfs", "memory", "phpcr", "replicate", "sftp",
| "vfs", "webdav", "zip", "bos", "cloudinary", "eloquent",
| "fallback", "github", "gdrive", "google", "mirror", "onedrive",
| "oss", "qiniu", "redis", "runabove", "sae", "smb", "temp"
2017-09-09 15:32:11 -05:00
|
2015-06-27 01:06:24 -05:00
*/
2015-02-05 21:39:52 -06:00
'disks' => [
2022-03-29 08:01:12 -05:00
'local' => [
2015-06-27 01:06:24 -05:00
'driver' => 'local',
'root' => storage_path('app'),
2015-06-27 01:06:24 -05:00
],
2018-10-14 01:53:00 -05:00
// local storage configuration for upload and export:
2022-03-29 08:01:12 -05:00
'upload' => [
2016-02-22 23:17:04 -06:00
'driver' => 'local',
'root' => storage_path('upload'),
],
2022-03-29 08:01:12 -05:00
'export' => [
2016-02-22 23:17:04 -06:00
'driver' => 'local',
'root' => storage_path('export'),
],
2018-10-14 01:53:00 -05:00
// various other paths:
2022-03-29 08:01:12 -05:00
'database' => [
2016-05-14 14:49:16 -05:00
'driver' => 'local',
'root' => storage_path('database'),
],
2022-03-29 08:01:12 -05:00
'seeds' => [
2016-12-09 00:20:48 -06:00
'driver' => 'local',
'root' => base_path('resources/seeds'),
],
2022-03-29 08:01:12 -05:00
'stubs' => [
'driver' => 'local',
'root' => base_path('resources/stubs'),
],
2022-03-29 08:01:12 -05:00
'resources' => [
'driver' => 'local',
'root' => base_path('resources'),
],
'public' => [
2016-09-15 23:19:40 -05:00
'driver' => 'local',
'root' => storage_path('app/public'),
2023-12-20 12:39:53 -06:00
'url' => env('APP_URL').'/storage',
2016-09-15 23:19:40 -05:00
'visibility' => 'public',
],
],
2018-10-14 01:53:00 -05:00
/*
|--------------------------------------------------------------------------
| Automatically Register Stream Wrappers
|--------------------------------------------------------------------------
|
| This is a list of the filesystem "disks" to automatically register the
| stream wrappers for on application start. Any "disk" you don't want to
| register on every application load will have to be manually referenced
| before attempting stream access, as the stream wrapper is otherwise only
| registered when used.
|
*/
2020-03-17 11:06:30 -05:00
/*
// Disabled, pending "twistor/flysystem-stream-wrapper" dependency
'autowrap' => [
'local',
],
*/
2015-02-05 21:39:52 -06:00
];