Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function FindProxyForURL(url, host) {
  2. if (shExpMatch(host, "*rutracker.org"))
  3. {
  4. return "PROXY 51.15.75.185:9239";
  5. }
  6.  
  7. if (shExpMatch(host, "discuss.pytorch.org"))
  8. {
  9. return "PROXY 51.15.75.185:9239";
  10. }
  11.  
  12. if (shExpMatch(host, "*.telegram.org"))
  13. {
  14. return "PROXY 51.15.75.185:9239";
  15. }
  16.  
  17. if (shExpMatch(host, "*.linkedin.com"))
  18. {
  19. return "PROXY 51.15.75.185:9239";
  20. }
  21.  
  22. return "DIRECT"
  23. }⏎
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement