Created
September 27, 2012 16:43
-
-
Save JoelQFernandez/3795031 to your computer and use it in GitHub Desktop.
Proxy Pac - ITV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass ITV Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (dnsDomainIs(host, "mercury.itv.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