1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00
spdylay/proxy.pac.sample

7 lines
162 B
Plaintext
Raw Normal View History

2013-01-12 03:05:11 -05:00
function FindProxyForURL(url, host) {
// For SPDY proxy
return "HTTPS localhost:3000";
// For conventional HTTP proxy
// return "PROXY localhost:3000";
}