Guest User

Untitled

a guest
Jan 20th, 2018
1,900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function FindProxyForURL(url, host) {
  2. if (shExpMatch(host, "*.test.local"))
  3. {
  4. return "DIRECT";
  5. }
  6. return "PROXY 127.0.0.1:1080; DIRECT";
  7. }
Add Comment
Please, Sign In to add comment