Skip to content

Latest commit

 

History

History
63 lines (34 loc) · 1.89 KB

README.md

File metadata and controls

63 lines (34 loc) · 1.89 KB

IP gateway for laravel

Software License

Requirements

Laravel 5.4 >

Features

  • The Laravel Ip gateway package helps you to blacklist or whitelist IP to prevent unauthorized access.

  • Since blacklists deny access to specific entities, they are best used when a limited number of items need to be denied access. When most entities need to be denied access, a whitelist approach is more efficient

Installation

You can install the package via composer:

composer require viitorcloud/laravel-ip-gateway

After installation, You need to publish the config file for this package. This will add the file config/ip-gateway.php, where you can configure this package.

php artisan vendor:publish --provider="LaravelIpGateway\IpGatewayProvider"

Config Usage

  • enable_package is used for enable/disable access protection.

  • enable_blacklist when its true that means, It will denied access for registered ips in ip-list, false means, It will allow accessing for registered ips in ip-list.

  • You can authenticated IPs through register route groups in middleware.

  • redirect_route_to will access URL, To redirect if denied.

  • You can define all your whitelist or blacklist IP addresses inside ip-list.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security-related issues, please email [email protected] or [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Notes

You can create as many whitelists or blacklist groups as you wish to protect access