Skip to content

Instantly share code, notes, and snippets.

@hadees
Last active December 23, 2015 12:18
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 hadees/6633912 to your computer and use it in GitHub Desktop.
Save hadees/6633912 to your computer and use it in GitHub Desktop.
// proxy.pac
function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.dev")) {
return "PROXY local:3000";
}
if (shExpMatch(host, "dev")) {
return "PROXY local:3000";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment