Guest User

Untitled

a guest
Jul 20th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function FindProxyForURL(url, host) {
  2. PROXY = "PROXY 1.2.3.4"
  3.  
  4. // Apple.com via proxy
  5. if (shExpMatch(host,"*.apple.com")) {
  6. return PROXY;
  7. }
  8. // Everything else directly!
  9. return "DIRECT";
  10. }
  11.  
  12. file:///Users/youruser/var/proxy/proxy.pac
Add Comment
Please, Sign In to add comment