Last active
July 15, 2024 01:50
-
-
Save SJ50/4792db3ff4d2ea3bade4f3505020d8a9 to your computer and use it in GitHub Desktop.
proxy.pac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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