2FAuth/config/filesystems.php

97 lines
2.9 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
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
2024-06-26 13:50:12 +02:00
| based disks are available to your application for file storage.
2019-05-20 07:37:41 +02:00
|
*/
2024-06-26 13:50:12 +02:00
'default' => env('FILESYSTEM_DISK', env('FILESYSTEM_DRIVER', 'local')),
2019-05-20 07:37:41 +02:00
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
2024-06-26 13:50:12 +02:00
| Below you may configure as many filesystem disks as necessary, and you
| may even configure multiple disks for the same driver. Examples for
| most supported storage drivers are configured here for reference.
2019-05-20 07:37:41 +02:00
|
2024-06-26 13:50:12 +02:00
| Supported drivers: "local", "ftp", "sftp", "s3"
2019-05-20 07:37:41 +02:00
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
2022-11-14 17:10:47 +01:00
'throw' => false,
2019-05-20 07:37:41 +02:00
],
2022-07-19 17:27:23 +02:00
'icons' => [
'driver' => 'local',
'root' => storage_path('app/public/icons'),
'url' => env('APP_URL').'/storage/icons',
'visibility' => 'public',
2022-11-14 17:10:47 +01:00
'throw' => false,
2022-07-19 17:27:23 +02:00
],
'logos' => [
'driver' => 'local',
'root' => storage_path('app/logos'),
2022-11-14 17:10:47 +01:00
'throw' => false,
2022-07-19 17:27:23 +02:00
],
'imagesLink' => [
'driver' => 'local',
'root' => storage_path('app/imagesLink'),
2022-11-14 17:10:47 +01:00
'throw' => false,
2022-07-19 17:27:23 +02:00
],
2019-05-20 07:37:41 +02:00
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
2022-11-14 17:10:47 +01:00
'throw' => false,
2019-05-20 07:37:41 +02:00
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
2021-12-02 13:15:53 +01:00
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
2022-11-14 17:10:47 +01:00
'throw' => false,
2019-05-20 07:37:41 +02:00
],
],
2021-12-02 13:15:53 +01:00
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('storage') => storage_path('app/public'),
],
2019-05-20 07:37:41 +02:00
];