Files
idk.i2p/proxy.pac

9 lines
228 B
Plaintext
Raw Normal View History

2021-12-11 15:45:55 -05:00
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".i2p")) {
return "PROXY localhost:4444";
} else if (dnsDomainIs(host, ".onion")) {
return "PROXY localhost:9050";
}
return "DIRECT";
}