From 5b32609673e619186ad9babd7ee54174a1c514e6 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Fri, 15 Apr 2022 11:11:07 +0700 Subject: [PATCH] feat: remove force https from web.php --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 59cdaf2..2ac9210 100755 --- a/routes/web.php +++ b/routes/web.php @@ -13,7 +13,7 @@ use Illuminate\Support\Facades\Route; | */ -\URL::forceScheme('https'); +//\URL::forceScheme('https'); Route::get('/', "SecurityController@initSystem"); Route::get('/login', "SecurityController@viewLogin")->name('login');