summaryrefslogtreecommitdiffstats
path: root/proxy.pac.sample
blob: 9283920b7f0d0e72e6882d255a906811fddfbfeb (plain)
1
2
3
4
5
6
function FindProxyForURL(url, host) {
  // For SPDY proxy
  return "HTTPS localhost:3000";
  // For conventional HTTP proxy
  // return "PROXY localhost:3000";
}