我正在尝试利用squid:优化 Web 交付和Glype® 代理脚本。
include/init.php
(Custom browser - set up defaults
):
if ( ! isset($_SESSION['custom_browser']) ) {
$_SESSION['custom_browser'] = array(
'user_agent' => isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '',
'referrer' => 'real',
'tunnel' => '127.0.0.1',
'tunnel_port' => '3128',
'tunnel_type' => 'http',
);
}
... 但是,即使我停止了 squid,代理仍然有效(tunnel_*
即不是如何设置)。
还有人处理过吗?我绝对记得它之前还正常工作过……
答案1
啊,我确实找到了))
browse.php
(Prepare the REQUEST
)(第 304 行):
$toSet[CURLOPT_PROXYPORT] = 3128;
$toSet[CURLOPT_PROXYTYPE] = "HTTP";
$toSet[CURLOPT_PROXY] = "127.0.0.1";