From 9d39835571f813e6918eac01d4efbd5fc72cef02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Tom=C3=A9?= Date: Wed, 20 Apr 2022 17:29:25 -0300 Subject: [PATCH] [9.x] Add missing maintenance to config (#5868) * [9.x] Add missing maintenance to config #40102 * fix spacing * fix cache store for maintenance config * formatting Co-authored-by: Taylor Otwell --- config/app.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/config/app.php b/config/app.php index b02c7f4b..ef76a7ed 100644 --- a/config/app.php +++ b/config/app.php @@ -125,6 +125,24 @@ '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