fix(proxy): remove hardcoded port 80/443 checks (#6275)
This commit is contained in:
parent
36961d8ae8
commit
a40dd8880d
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ public function handle(Server $server, $fromUI = false): bool
|
|||
if ($server->id === 0) {
|
||||
$ip = 'host.docker.internal';
|
||||
}
|
||||
$portsToCheck = ['80', '443'];
|
||||
$portsToCheck = [];
|
||||
|
||||
try {
|
||||
if ($server->proxyType() !== ProxyTypes::NONE->value) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue