diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-30 00:01:03 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-30 00:01:03 +0000 |
commit | ce200ae133f1700e749c28454f572dbf7e8778ab (patch) | |
tree | 4d7b895f1d5999d8f0e9c57546a778de1017f6b9 /src/config/torrc.sample.in | |
parent | d8a5358ce9862e17e5c22d77bc6dbc2ad71c03d1 (diff) | |
download | tor-ce200ae133f1700e749c28454f572dbf7e8778ab.tar.gz tor-ce200ae133f1700e749c28454f572dbf7e8778ab.zip |
rename torrc to torrc.sample
now by default no torrc will be installed, so we'll just
use the built-in defaults (we already do this on windows)
svn:r1375
Diffstat (limited to 'src/config/torrc.sample.in')
-rw-r--r-- | src/config/torrc.sample.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in new file mode 100644 index 0000000000..34c27d409f --- /dev/null +++ b/src/config/torrc.sample.in @@ -0,0 +1,32 @@ +# Configuration file for a typical tor user + +# List of routers. Tor nodes start out knowing about the directory +# servers, and from them they get a list of currently up nodes. +RouterFile @CONFDIR@/dirservers + +# Comment out if you don't want to allow applications to connect. +SocksPort 9050 +SocksBindAddress 127.0.0.1 # accept connections only from localhost + +##################### Below is just for servers ##################### + +## NOTE: If you enable these, you won't be able to use tor as a client +## or server until you've been added to the directory and can +## authenticate to the other nodes. See the README for details. + +## The directory for keeping all the keys/etc for this server +#DataDirectory @LOCALSTATEDIR@/lib/tor + +#Nickname moria # A unique handle for this server +#Address moria.seul.org # The fqdn for this server + +#ORPort 9001 # where to listen for tor connections +#ORBindAddress 0.0.0.0 # accept connections from anywhere + +## A comma-separated list of exit policies. If you want to *replace* +## the default exit policy, end this with either a reject *:* or an +## accept *:*. Otherwise, you're *augmenting* (prepending to) the +## default exit policy. Leave commented to just use the default. +#ExitPolicy accept 18.244.0.188:25,accept 18.244.0.114:25 +#ExitPolicy reject *:* + |