php 7.3 Lumen 6.2
composer require faizalmansor/lumen-6-maintenance-mode
Add this to your AppServiceProvider or in bootstrap/app.php
$app->register(
faizalmansor\MaintenanceMode\Providers\MaintenanceModeServiceProvider::class
);
Add the up and down commands in app/console/Kernel.php
protected $commands = [
\faizalmansor\MaintenanceMode\Console\Commands\DownCommand::class,
\faizalmansor\MaintenanceMode\Console\Commands\UpCommand::class
];
php artisan down
php artisan up
Currently only ipv4 and no ipranges
Add ALLOWED_IPS in your .env file
ALLOWED_IPS=192.168.1.2,127.0.0.1,136.22.16.0
Features planned:
- IP Ranges
- Dynamic DNS IP Filtering