Skip to content

Instantly share code, notes, and snippets.

@t10u
Created March 27, 2012 12:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t10u/2215430 to your computer and use it in GitHub Desktop.
Save t10u/2215430 to your computer and use it in GitHub Desktop.
Proxy auto config file for vagrant boxes
function FindProxyForURL(url, host)
{
if (dnsDomainIs(host, ".local")) {
return "PROXY 33.33.33.66";
}
return "DIRECT";
}
@t10u
Copy link
Author

t10u commented Mar 27, 2012

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