Fix storage link on docker

This commit is contained in:
mchev
2026-04-02 11:56:16 +02:00
parent 375cfc6b18
commit de4ba6bba0
3 changed files with 15 additions and 0 deletions

View File

@@ -37,6 +37,15 @@ return [
'report' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
'report' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_KEY'),