Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function FindProxyForURL(url, host) {
  2. PROXY = "PROXY 192.168.6.35:808"
  3.  
  4. if (shExpMatch(host,"*.demandware.net")) {
  5. return PROXY;
  6. }
  7.  
  8. if (shExpMatch(host,"*.demandware.com")) {
  9. return PROXY;
  10. }
  11.  
  12. return "DIRECT";
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement