Last active
May 6, 2022 21:19
-
-
Save catalincezarene/70a05cb22dccf222e5c0e95cb4f324c6 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) { | |
var ProxyConfig = "DIRECT"; | |
if (dnsDomainIs(host, "localhost.vps-3fda5bde.machine.catalincezarene.com")) { | |
ProxyConfig = "SOCKS5 127.0.0.1:9900; SOCKS 127.0.0.1:9900"; | |
} | |
return ProxyConfig; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment