1function FindProxyForURL(url, host) { 2 // For SPDY proxy 3 return "HTTPS localhost:3000"; 4 // For conventional HTTP proxy 5 // return "PROXY localhost:3000"; 6} 7