玩过SPDY的都知道。。。绝壁好东西!
https://github.com/http2/http2-spec/wiki/Implementations
特别是里面的 nghttpx - proxy
Client <-- (HTTP/2, SPDY, HTTP/1.1) --> nghttpx <-- (HTTP/1.1) --> Proxy
[secure proxy] (e.g., Squid, ATS)
pac 写法
function FindProxyForURL(url, host) {
return "HTTPS SERVERADDR:PORT";
}
https://github.com/http2/http2-spec/wiki/Implementations
特别是里面的 nghttpx - proxy
Client <-- (HTTP/2, SPDY, HTTP/1.1) --> nghttpx <-- (HTTP/1.1) --> Proxy
[secure proxy] (e.g., Squid, ATS)
pac 写法
function FindProxyForURL(url, host) {
return "HTTPS SERVERADDR:PORT";
}