Files
nexus/config/filesystems.php
T
2026-07-02 15:52:13 +02:00

33 lines
655 B
PHP

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