Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 844 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 844 Bytes

Force SSL for Laravel

Latest Version on Packagist Total Downloads

A simple package to force SSL in Laravel applications.

Just add to your .env file the following line in those environments where you want to skip it (by default it is true).

   FORCE_SSL_ENABLED=true

Or publish the config file and edit it from there.

   php artisan migratephp artisan vendor:publish --provider="MHMartinez\ForceSsl\Providers\ForceSslServiceProvider"