fix(proxy): remove hardcoded port 80/443 checks (#6275)

This commit is contained in:
Cynthia Ebert 2025-08-04 22:16:49 +02:00 committed by GitHub
parent 36961d8ae8
commit a40dd8880d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {