Skip to content

Commit

Permalink
Update proxy.pac
Browse files Browse the repository at this point in the history
  • Loading branch information
romandev committed Mar 13, 2020
1 parent 8c92c27 commit 364cdb9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions proxy.pac
@@ -1,10 +1,12 @@
function FindProxyForURL(url, host) {
return "HTTP 127.0.0.1:44777";

if (shExpMatch(host, "*.sec.samsung.net")) {
return "HTTP 127.0.0.1:44777";
return "SOCKS 127.0.0.1:8080";
}

if (shExpMatch(host, "*.samsung.net")) {
return "HTTP 127.0.0.1:44777";
return "SOCKS 127.0.0.1:8080";
}

if (shExpMatch(host, "165.213.202.130")) { // Gerrit
Expand Down

0 comments on commit 364cdb9

Please sign in to comment.