Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
Tyler King edited this page Oct 15, 2020 · 2 revisions

Overview

ngrok is very popular and is often attempted to be used with Laravel and this package. However, there's many issues others have encountered in the past, which is why this package does not support ngrok or ngrok related issues.

Some issues you may encounter:

  • Webhooks not being received
  • Auth flow erroring (causing to see login page)
  • Random cookie issues

Most of these issues seem to stem from http to https calls/redirects.

What may help

You can try to force HTTPS with Laravel.

Open app/Providers/AppServiceProvider.php inside the boot method, do:

public function boot(Illuminate\Contracts\Routing\UrlGenerator $url)
{
    $url->forceScheme('https');
}