Skip to content

Instantly share code, notes, and snippets.

@JoelQFernandez
Created September 27, 2012 16:22
Show Gist options
  • Save JoelQFernandez/3794931 to your computer and use it in GitHub Desktop.
Save JoelQFernandez/3794931 to your computer and use it in GitHub Desktop.
Proxy Pac - Channel 4
// Bypass Channel 4 Geo Blocking.
function FindProxyForURL(url, host)
{
if (dnsDomainIs(host, "ais.channel4.com"))
{
return "PROXY 81.27.79.181:8080";
}
else
{
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment