发新话题
打印

firefox设置使用HTTPS代理服务器

firefox设置使用HTTPS代理服务器

打开设置,Network Settings》Manual proxy configuration》Manual proxy configuration》Manual proxy configuration

此处的 “HTTPS Proxy”仍然需要填写HTTP代理服务器IP及端口,例如:182.92.237.99或t.360sec.top,端口是8086,只是表明只对HTTPS流量做代理的意思,如果填写https代理的端口8087,浏览器会显示“PR_CONNECT_RESET_ERROR”错误,代理服务器显示“Error negotiating SSL connection on FD 23: error:00000001:lib(0):func(0):reason(1) (1/-1)”错误

如果不填写 “HTTP Proxy”,则不对HTTP流量做代理。

真正使用HTTPS代理,需要使用PAC或SwitchyOmega等插件,即选择“Automatic proxy configuration URL”,填写URL,类似:“https://t.360sec.top/https.js”,文件内容是

function FindProxyForURL(url, host)
{
return "HTTPS t.360sec.top:8087";
}

TOP

发新话题