Skip to content

Instantly share code, notes, and snippets.

@SJ50
Last active July 15, 2024 01:50
Show Gist options
  • Save SJ50/4792db3ff4d2ea3bade4f3505020d8a9 to your computer and use it in GitHub Desktop.
Save SJ50/4792db3ff4d2ea3bade4f3505020d8a9 to your computer and use it in GitHub Desktop.
proxy.pac
function FindProxyForURL(url, host)
{
if (shExpMatch(url, "bitbucket.org/*")
{
return "SOCKS localhost:8080";
}
else
{
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment