Created
December 31, 2025 14:30
-
-
Save cooki3monst3r77/b8ccacb9b6afc76f268b75883eea881c to your computer and use it in GitHub Desktop.
MyProxy
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(host, "lakota.spi")) { | |
| return "PROXY your.proxy.server:port"; | |
| } else { | |
| return "DIRECT"; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment