Skip to content

Commit

Permalink
restored proxy.pac
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip (flip) Kromer committed Dec 22, 2011
1 parent 812952d commit 524b77c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/proxy.pac
@@ -0,0 +1,12 @@
function FindProxyForURL(url, host) {
if ((shExpMatch(host, "*ec2*.amazonaws.com" )) ||
(shExpMatch(host, "*ec2.internal*" )) ||
(shExpMatch(host, "*compute-*.amazonaws.com" )) ||
(shExpMatch(host, "*compute-*.internal*" )) ||
(shExpMatch(host, "*domu*.internal*" )) ||
(shExpMatch(host, "10.*" ))
) {
return "SOCKS5 localhost:6666";
}
return "DIRECT";
}

0 comments on commit 524b77c

Please sign in to comment.