Skip to content

Instantly share code, notes, and snippets.

@dewski
Created November 18, 2009 18:03
Show Gist options
  • Select an option

  • Save dewski/238106 to your computer and use it in GitHub Desktop.

Select an option

Save dewski/238106 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (shExpMatch(url,"*.dev/*")) {
return "PROXY localhost";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment