通过 https 连接到代理服务器,
用 pac 文件像这样子
var proxy = "HTTPS example.com:443";
function FindProxyForURL (url, host ) {
return proxy;
}
chrome 下, EverProxy, SwithyOmega 都支持直接设置类型为 https.
firefox 下 Foxproxy , Autoproxy 都不支持,设置为 pac 也不行。
有谁知道有什么插件支持吗?
主要是想找一个 firefox 下像 EverProxy, SwithyOmega 这样设置方便又支持 https 的插件。
1
LazyZhu 2015-09-18 19:28:10 +08:00
可以试试这样:
"PROXY example.com:443" |
2
ericFork 2015-09-19 02:02:28 +08:00
Firefox 印象中是还没很好地支持吧,而且也只支持 https/1.1 ,不支持 SPDY 或者 HTTP2
|
3
fangdingjun OP |