Skip to content

Instantly share code, notes, and snippets.

@shikhalev
Created September 18, 2013 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shikhalev/6612170 to your computer and use it in GitHub Desktop.
Save shikhalev/6612170 to your computer and use it in GitHub Desktop.
proxy.pac for i2p
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".i2p")) {
return "PROXY 127.0.0.1:4444";
} else {
return "DIRECT";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment