This commit is contained in:
make
2025-05-22 12:06:57 +08:00
parent de07f06a67
commit 3f2fc62242

View File

@@ -97,6 +97,12 @@ class Site extends ZwSite
$proxyAuth = base64_encode($strKey . ":" . $strSecret);
$arrConfig['headers']['Proxy-Authorization'] = "Basic " . $proxyAuth;
break;
case 'JULIANG':
// 隧道代理信息
// $proxy = 'http://username:password@XXX.juliangip.com:23456';
$proxy = "http://".$strKey . ":" . $strSecret. "@".$strProxyHost;
$arrConfig['proxy'] = $proxy;
break;
}
}