morningtrain/laravel-https

Provides some initial https setup
2,853 1
Install
composer require morningtrain/laravel-https
Latest Version:1.6.0
PHP:^7.2|^8.0
License:GPL-3.0-only
Last Updated:May 8, 2023
Links: GitHub  ·  Packagist
Maintainer: morningtrain

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,
    ];
}

Credits