Last active
September 21, 2019 19:51
-
-
Save josephfinlayson/5928c3a38f1631be10f4d9f1321747eb to your computer and use it in GitHub Desktop.
This file contains 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(host,"*.gpsrv.com")) { | |
return "SOCKS5 127.0.0.1:5000; SOCKS 127.0.0.1:5000" | |
} | |
return "DIRECT" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment