Skip to content

Instantly share code, notes, and snippets.

@folletto
Created April 8, 2015 08:53
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 folletto/cadfa45fee1aec7f08e3 to your computer and use it in GitHub Desktop.
Save folletto/cadfa45fee1aec7f08e3 to your computer and use it in GitHub Desktop.
A simple proxy auto-configuration file for local development.
function FindProxyForURL(url, host) {
if ( localHostOrDomainIs(host, "name.dev") ) {
return "PROXY 192.168.1.0:8888";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment