aboutsummaryrefslogtreecommitdiff
path: root/contrib/proxy-some-domains
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-02-07 07:39:00 +0100
committerSebastian Hahn <sebastian@torproject.org>2010-02-16 06:41:36 +0100
commitf164a76f72cc8e3447a733dcb129239b4afdf8c5 (patch)
tree4f8afa71abdd17215057046dba35537bdc8ea806 /contrib/proxy-some-domains
parent3a7e7f1be48b8c0b384be23398517f7a7d7597ad (diff)
downloadtor-f164a76f72cc8e3447a733dcb129239b4afdf8c5.tar
tor-f164a76f72cc8e3447a733dcb129239b4afdf8c5.tar.gz
Remove legacy files from main source distribution
The AUTHORS file was pretty outdated. Its contents moved onto the people page. Design paper and roadmaps moved to the projects directory in svn.
Diffstat (limited to 'contrib/proxy-some-domains')
-rw-r--r--contrib/proxy-some-domains52
1 files changed, 0 insertions, 52 deletions
diff --git a/contrib/proxy-some-domains b/contrib/proxy-some-domains
deleted file mode 100644
index eb238a2fe..000000000
--- a/contrib/proxy-some-domains
+++ /dev/null
@@ -1,52 +0,0 @@
-Subject:
-Re: Anonymous/Nonymous Communication Coexisting?
-From:
-Kristian Köhntopp <kris@xn--khntopp-90a.de>
-Date:
-Fri, 10 Jun 2005 08:56:19 +0200
-To:
-or-talk@freehaven.net
-
-On Wednesday 08 June 2005 04:20, yancm@sdf.lonestar.org wrote:
-
->> Is it possible to have a single application, such as a web
->> browser or a p2p client behave normally with normal url's but
->> use tor if the url is an xyz.onion address? Or is it
->> everything or nothing?
-
-
-This is basically a question of using your proxy or not. You can
-control the behaviour of your browser in great detail writing a
-proxy.pac program in Javascript and setting that program as the
-proxy autoconfiguration URL in your browser.
-
-An example:
-
-kris@jordan01:~> cat /srv/www/htdocs/proxy.pac
-
-function FindProxyForURL(url, host)
-{
- var proxy_yes = "PROXY jordan01.int.cinetic.de:3128";
- var proxy_no = "DIRECT";
-
- // Redirect all accesses to mlan hosts to the mlan proxy
- if (dnsDomainIs(host, ".mlan.cinetic.de")) {
- return proxy_yes;
- }
-
- // Everything else is direct
- return proxy_no;
-}
-
-So here the program checks if the destination is a mlan-Host, and
-if so, uses the appropriate proxy on jordan for the access,
-while all other accesses are direct.
-
-You could do a similar thing with .onion accesses with a trivial
-modification.
-
-Docs:
-http://wp.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
-
-Kristian
-