mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
67c0c64aa4
if your exitpolicy includes " *:*" then it is final, else we append the default exit policy. (thanks weasel) svn:r1105
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
# 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 #####################
|
|
|
|
## 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 cell-speaking 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.
|
|
#ExitPolicy accept 18.244.0.188:25,accept 18.244.0.114:25
|
|
#ExitPolicy reject *:*
|
|
|