Skip to content

Instantly share code, notes, and snippets.

@seri
Created April 29, 2011 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seri/948015 to your computer and use it in GitHub Desktop.
Save seri/948015 to your computer and use it in GitHub Desktop.
Proxy auto-config rule to access Facebook through Ultrasurf
function FindProxyForURL(url, host)
{
if (shExpMatch(host, "*.facebook.com") ||
shExpMatch(host, "facebook.com") ||
shExpMatch(host, "static.ak.fbcdn.net"))
return "PROXY 127.0.0.1:9666";
else
return "DIRECT";
}
@dellnoantechnp
Copy link

On IOS not work by instagram app.

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