remove env variables from dockerfile

This commit is contained in:
Zachary Boyd 2017-12-07 17:57:44 -08:00
parent 54fa83bdf5
commit 9a3091504a
2 changed files with 1 additions and 7 deletions

View file

@ -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

View file

@ -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