photo/config/filesystems.php

77 lines
2.3 KiB
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
2019-11-08 12:08:34 +00:00
| by the framework. The "local" disk, as well as a variety of cloud
2024-08-25 08:26:29 +00:00
| based disks are available to your application for file storage.
2016-06-20 13:35:59 +00:00
|
*/
2024-08-25 08:26:29 +00:00
'default' => env('FILESYSTEM_DISK', 'local'),
2016-06-20 13:35:59 +00:00
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
2024-08-25 08:26:29 +00: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.
2016-06-20 13:35:59 +00:00
|
2024-08-25 08:26:29 +00:00
| Supported drivers: "local", "ftp", "sftp", "s3"
2019-11-08 12:08:34 +00:00
|
2016-06-20 13:35:59 +00:00
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
2024-08-25 08:26:29 +00:00
'throw' => false,
2016-06-20 13:35:59 +00:00
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
2019-11-08 12:08:34 +00:00
'url' => env('APP_URL').'/storage',
2016-06-20 13:35:59 +00:00
'visibility' => 'public',
2024-08-25 08:26:29 +00:00
'throw' => false,
2016-06-20 13:35:59 +00:00
],
's3' => [
'driver' => 's3',
2019-11-08 12:08:34 +00:00
'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'),
2024-08-25 08:26:29 +00:00
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
2016-06-20 13:35:59 +00:00
],
],
2024-08-25 08:26:29 +00: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'),
],
2016-06-20 13:35:59 +00:00
];