openclassify/config/filesystems.php

32 lines
769 B
PHP

<?php
return [
'default' => env('FILESYSTEM_DISK', 'public'),
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app/private'),
'url' => env('APP_PRIVATE_STORAGE_URL', '/private-storage'),
'serve' => true,
'throw' => false,
'report' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_PUBLIC_STORAGE_URL', '/media'),
'serve' => true,
'visibility' => 'public',
'throw' => false,
'report' => false,
],
],
'links' => [
public_path('storage') => storage_path('app/public'),
],
];