Update the configuration for flysystem.

This commit is contained in:
Dave Smith-Hayes 2025-04-27 02:56:49 +00:00
parent 7972d517ce
commit b556779532
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ class Bootstrap
],
'filesystem' => [
'type' => 'local',
'location' => '/var/slovocast/data'
'location' => '/var/www/slovocast/data'
]
]);

View File

@ -11,7 +11,7 @@ class FileSystemSchema
{
return Expect::structure([
'type' => Expect::anyOf([ 'local', 's3' ])->default('local'),
'location' => Expect::string()->default('/var/slovocast/data')->required(),
'location' => Expect::string()->default('/var/www/slovocast/data')->required(),
]);
}
}