Force https urls in production

This commit is contained in:
2021-12-25 11:28:59 +01:00
parent 65b65e9a74
commit ea545ed104

View File

@@ -23,6 +23,8 @@ class AppServiceProvider extends ServiceProvider
*/ */
public function boot() public function boot()
{ {
// if($this->app->environment('production')) {
\URL::forceScheme('https');
}
} }
} }