Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Created August 5, 2012 10:16
Show Gist options
  • Save cheeaun/3263681 to your computer and use it in GitHub Desktop.
Save cheeaun/3263681 to your computer and use it in GitHub Desktop.
PAC file for SingTel, short URL: http://j.mp/singtelpac
function FindProxyForURL(url, host)
{
if (isInNet(host, "192.168.1.0", "255.255.255.0")) return "DIRECT";
else return "PROXY proxy2.singnet.com.sg:8080";
}
@cheeaun
Copy link
Author

cheeaun commented Aug 5, 2012

For iOS:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment