laravel-https maintained by morningtrain
Description
Provides some initial https setup
Author
Last update
2023/05/08 07:08
(dev-master)
License
Downloads
2 854
Tags
Helper for SSL & HTTPS
Install
Via Composer
$ composer require morningtrain/laravel-https
Usage
Deploy the config files.
$ php artisan vendor:publish
Update the following in your .env:
USE_SSL=true
REDIRECT_TO_HTTPS=true
Register the ForceSSL middleware as a global middleware in your App\Httk\Kernel class:
class Kernel extends HttpKernel
{
/**
* The application's middleware stack.
*
* @var array
*/
protected $middleware = [
\MorningTrain\Laravel\Https\Http\Middleware\ForceSSL::class,
];
}