Files
star-cloud/app/Providers/AppServiceProvider.php
sky121113 7b5a988d60
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 43s
[FIX] 修正 HTTPS 強制跳轉邏輯,依據 APP_URL 配置自動啟用 HTTPS 防止安全啟動警告
2026-03-18 09:26:43 +08:00

31 lines
600 B
PHP

<?php
namespace App\Providers;
use App\Listeners\LogSuccessfulLogin;
use Illuminate\Auth\Events\Login;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
if (str_starts_with(config('app.url'), 'https://')) {
\Illuminate\Support\Facades\URL::forceScheme('https');
}
}
}