mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * 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
 | 
						|
 * along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
 | 
						|
return [
 | 
						|
 | 
						|
    /*
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    | Default Filesystem Disk
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    |
 | 
						|
    | Here you may specify the default filesystem disk that should be used
 | 
						|
    | by the framework. The "local" disk, as well as a variety of cloud
 | 
						|
    | based disks are available to your application. Just store away!
 | 
						|
    |
 | 
						|
    */
 | 
						|
 | 
						|
    'default' => env('FILESYSTEM_DRIVER', 'local'),
 | 
						|
 | 
						|
    /*
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    | 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.
 | 
						|
    |
 | 
						|
    */
 | 
						|
 | 
						|
    'cloud' => env('FILESYSTEM_CLOUD', 's3'),
 | 
						|
 | 
						|
    /*
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    | 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 Drivers: "local", "ftp", "s3", "rackspace"
 | 
						|
    |
 | 
						|
    */
 | 
						|
 | 
						|
    'disks' => [
 | 
						|
 | 
						|
        'local' => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => storage_path('app'),
 | 
						|
        ],
 | 
						|
 | 
						|
        'upload'   => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => storage_path('upload'),
 | 
						|
        ],
 | 
						|
        'export'   => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => storage_path('export'),
 | 
						|
        ],
 | 
						|
        'database' => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => storage_path('database'),
 | 
						|
        ],
 | 
						|
        'seeds'    => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => base_path('resources/seeds'),
 | 
						|
        ],
 | 
						|
        'stubs'    => [
 | 
						|
            'driver' => 'local',
 | 
						|
            'root'   => base_path('resources/stubs'),
 | 
						|
        ],
 | 
						|
 | 
						|
        'public' => [
 | 
						|
            'driver'     => 'local',
 | 
						|
            'root'       => storage_path('app/public'),
 | 
						|
            'url'        => env('APP_URL') . '/storage',
 | 
						|
            'visibility' => 'public',
 | 
						|
        ],
 | 
						|
 | 
						|
        's3' => [
 | 
						|
            'driver' => 's3',
 | 
						|
            'key'    => env('AWS_KEY'),
 | 
						|
            'secret' => env('AWS_SECRET'),
 | 
						|
            'region' => env('AWS_REGION'),
 | 
						|
            'bucket' => env('AWS_BUCKET'),
 | 
						|
        ],
 | 
						|
 | 
						|
    ],
 | 
						|
 | 
						|
];
 |