File size: 762 Bytes
1501522 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?php
namespace App\Providers;
use Illuminate\Http\Request;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\URL;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
if (! app()->environment('production')) {
return;
}
$request = request();
if (! $request instanceof Request) {
return;
}
$host = (string) $request->getHost();
if ($host !== '' && str_ends_with($host, '.hf.space')) {
URL::forceScheme('https');
}
}
}
|