Update proxy.pac
This commit is contained in:
16
proxy.pac
16
proxy.pac
@@ -4,32 +4,34 @@ function FindProxyForURL(url, host) {
|
||||
if ((shExpMatch(host, "linkedin.com")) || (shExpMatch(host, "www.linkedin.com")))
|
||||
{ return "SOCKS5 proxy.vm:11080" }
|
||||
else
|
||||
|
||||
//rutracker.org
|
||||
|
||||
if ((shExpMatch(host, "rutracker.org")) || (shExpMatch(host, "*.rutracker.*")))
|
||||
|
||||
{ return "SOCKS5 proxy.vm:11080"}
|
||||
else
|
||||
|
||||
//kinozal.tv
|
||||
|
||||
if ((shExpMatch(host, "kinozal.tv")) || (shExpMatch(host, "www.kinozal.tv")))
|
||||
|
||||
{ return "SOCKS5 proxy.vm:11080"}
|
||||
else
|
||||
|
||||
//ntc.party
|
||||
|
||||
if (shExpMatch(host, "ntc.party"))
|
||||
|
||||
{ return "SOCKS5 proxy.vm:11080"}
|
||||
|
||||
else
|
||||
//instagram
|
||||
|
||||
{
|
||||
// Default: no proxy,
|
||||
return "DIRECT"
|
||||
}
|
||||
if (shExpMatch(host, "*.instagram.*"))
|
||||
|
||||
{ return "SOCKS5 proxy.vm:11080"}
|
||||
|
||||
|
||||
else
|
||||
{ // Default: no proxy,
|
||||
return "DIRECT" }
|
||||
// End of PAC file
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user