diff --git a/config/app.php b/config/app.php index 7ac935b30c..e3daf29ae6 100644 --- a/config/app.php +++ b/config/app.php @@ -133,6 +133,24 @@ return [ 'cipher' => 'AES-256-CBC', + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => 'file', + // 'store' => 'redis', + ], + /* |-------------------------------------------------------------------------- | Autoloaded Service Providers diff --git a/config/database.php b/config/database.php index 1f3d00d2c6..9b780eb9e7 100644 --- a/config/database.php +++ b/config/database.php @@ -144,7 +144,7 @@ return [ 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, - 'schema' => 'public', + 'search_path' => 'public', 'sslmode' => 'prefer', ], diff --git a/config/filesystems.php b/config/filesystems.php index 31634535df..d7d8f8fd3a 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -21,7 +21,7 @@ return [ | */ - 'default' => env('FILESYSTEM_DRIVER', 'local'), + 'default' => env('FILESYSTEM_DISK', 'local'), /* |--------------------------------------------------------------------------