null, /* |-------------------------------------------------------------------------- | Protection Schemes |-------------------------------------------------------------------------- | | Here you may define all of the protection schemes for your application | as well as their drivers. You may even define multiple schemes for | the same driver to easily protect different types of pages. | | Supported drivers: "ip_address", "auth", "password" | */ 'schemes' => [ 'ip_address' => [ 'driver' => 'ip_address', 'allowed' => ['127.0.0.1'], ], 'logged_in' => [ 'driver' => 'auth', 'login_url' => '/login', 'append_redirect' => true, ], 'password' => [ 'driver' => 'password', 'allowed' => ['secret'], 'form_url' => null, ], ], ];