32 lines
742 B
PHP
32 lines
742 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
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 (
|
|
(isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') ||
|
|
(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
|
|
str_starts_with(config('app.url'), 'https://') ||
|
|
config('app.env') === 'production'
|
|
) {
|
|
\Illuminate\Support\Facades\URL::forceScheme('https');
|
|
}
|
|
}
|
|
}
|