Force https on production

This commit is contained in:
2026-03-23 14:59:38 +01:00
parent 9bedccb738
commit baaf614a88
+3
View File
@@ -20,5 +20,8 @@ class AppServiceProvider extends ServiceProvider
public function boot(): void
{
//
if(config('app.env') === 'production') {
\URL::forceScheme('https');
}
}
}