@@ -69,4 +69,8 @@ Route::get('/client/meeting/{meeting_uid}', 'ClientController@entranceLobby')->n
Route::bind('url_slug', function($value, $route)
{
return Lobby::where('url_slug', $value)->first();
-});
+});
+
+if (env('APP_ENV') === 'production') {
+ URL::forceScheme('https');
+}