From 9a3091504a05d49487b74e4dc0be62583fad547b Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Thu, 7 Dec 2017 17:57:44 -0800 Subject: [PATCH] remove env variables from dockerfile --- Dockerfile | 6 ------ README.md | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91d6be0..dbad68e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,6 @@ EXPOSE 53 EXPOSE 9077 -ENV DNS_PORT 53 - -ENV SOCKS_PORT 9050 - -ENV CONTROL_PORT 9077 - ENV PATH $PATH:/app/bin ADD https://deb.nodesource.com/setup_8.x /tmp/nodejs_install diff --git a/README.md b/README.md index e0c8636..d8354ec 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ *Tor Router* is a simple SOCKS5 forward proxy for distributing traffic across multiple instances of Tor. At startup Tor Router will run an arbitrary number of instances Tor an each request will be sent to a different instance in round-robin fashion. This can be used to increase anonymity, because each request will be sent on a different circut and will most likely use a different exit-node, and also to increase performance since outbound traffic is now split across several instances of Tor. -Tor Router also includes a DNS forward proxy and a HTTP forward proxy as well, which like the SOCKS proxy will distribute traffic across multiple instances of Tor in round-robin fashion. +Tor Router also includes a DNS forward proxy and a HTTP forward proxy as well, which like the SOCKS proxy will distribute traffic across multiple instances of Tor in round-robin fashion. The HTTP forward proxy can be used to access Tor via an HTTP Proxy. ## Building and Running