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

View File

@@ -66,7 +66,7 @@ class CheckProxy
if ($server->id === 0) {
$ip = 'host.docker.internal';
}
$portsToCheck = ['80', '443'];
$portsToCheck = [];
try {
if ($server->proxyType() !== ProxyTypes::NONE->value) {