From a40dd8880d49ef691ca4322f86395f363b85ecf4 Mon Sep 17 00:00:00 2001 From: Cynthia Ebert <54354036+Cinzya@users.noreply.github.com> Date: Mon, 4 Aug 2025 22:16:49 +0200 Subject: [PATCH] fix(proxy): remove hardcoded port 80/443 checks (#6275) --- app/Actions/Proxy/CheckProxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Proxy/CheckProxy.php b/app/Actions/Proxy/CheckProxy.php index d4b03ffc1..a06e547c5 100644 --- a/app/Actions/Proxy/CheckProxy.php +++ b/app/Actions/Proxy/CheckProxy.php @@ -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) {