diff --git a/app/src/Bootstrap.php b/app/src/Bootstrap.php index df30aca..ddff202 100644 --- a/app/src/Bootstrap.php +++ b/app/src/Bootstrap.php @@ -100,7 +100,7 @@ class Bootstrap ], 'filesystem' => [ 'type' => 'local', - 'location' => '/var/slovocast/data' + 'location' => '/var/www/slovocast/data' ] ]); diff --git a/app/src/Configuration/FileSystemSchema.php b/app/src/Configuration/FileSystemSchema.php index 6d76f99..71187da 100644 --- a/app/src/Configuration/FileSystemSchema.php +++ b/app/src/Configuration/FileSystemSchema.php @@ -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(), ]); } }