Skip to content

Instantly share code, notes, and snippets.

@jmbrito01
Created January 13, 2017 21:40
Show Gist options
  • Save jmbrito01/e7240e8d88b731f18cba052bf38996fa to your computer and use it in GitHub Desktop.
Save jmbrito01/e7240e8d88b731f18cba052bf38996fa to your computer and use it in GitHub Desktop.
BDER PROXY
function FindProxyForURL(url, host) {
if (shExpMatch(host, "bder-dev.herokuapp.com")) {
return "PROXY localhost:3000";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment