This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 373
ngrok
Tyler King edited this page Oct 15, 2020
·
2 revisions
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.
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');
}
road map
Welcome to the wiki!
Please see the homepage for a list of relevant pages.