mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
Force https on URLs when behind proxy; closes #3623
This commit is contained in:
parent
60b82343b2
commit
0a4ba6a7dc
@ -4,9 +4,11 @@ namespace Pterodactyl\Providers;
|
|||||||
|
|
||||||
use View;
|
use View;
|
||||||
use Cache;
|
use Cache;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
use Pterodactyl\Models\User;
|
use Pterodactyl\Models\User;
|
||||||
use Pterodactyl\Models\Server;
|
use Pterodactyl\Models\Server;
|
||||||
use Pterodactyl\Models\Subuser;
|
use Pterodactyl\Models\Subuser;
|
||||||
|
use Illuminate\Support\Facades\URL;
|
||||||
use Illuminate\Pagination\Paginator;
|
use Illuminate\Pagination\Paginator;
|
||||||
use Illuminate\Support\Facades\Schema;
|
use Illuminate\Support\Facades\Schema;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
@ -32,6 +34,15 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
View::share('appIsGit', $this->versionData()['is_git'] ?? false);
|
View::share('appIsGit', $this->versionData()['is_git'] ?? false);
|
||||||
|
|
||||||
Paginator::useBootstrap();
|
Paginator::useBootstrap();
|
||||||
|
|
||||||
|
// If the APP_URL value is set with https:// make sure we force it here. Theoretically
|
||||||
|
// this should just work with the proxy logic, but there are a lot of cases where it
|
||||||
|
// doesn't, and it triggers a lot of support requests, so lets just head it off here.
|
||||||
|
//
|
||||||
|
// @see https://github.com/pterodactyl/panel/issues/3623
|
||||||
|
if (Str::startsWith(config('app.url') ?? '', 'https://')) {
|
||||||
|
URL::forceScheme('https');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user