Last active
July 10, 2025 07:04
-
-
Save kengonakajima/2370b9a080c586fecfd7bfe8a85039af to your computer and use it in GitHub Desktop.
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, "example.com") || shExpMatch(host, "*.example.com")) { | |
| return "PROXY localhost:3128"; | |
| } | |
| return "DIRECT"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment