blob: eef8c5573c25bc4ed60c5a032a2bbf09372b378d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Configuration file for a typical tor node
# The directory for keeping all the config/data for this node
DataDirectory @LOCALSTATEDIR@/lib/tor
# A unique handle for this node
Nickname moria
# The fqdn for this node
Address moria.seul.org
# Ports for various services. Comment out or set to 0 if you're not
# offering that service.
ORPort 9001 # listening for cell-speaking connections
SocksPort 9050 # listening for socks-speaking connections
#DirPort 0
# 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
# A comma-separated list of exit policies. They're considered in
# order, first match wins.
ExitPolicy reject 127.0.0.1:*,reject 18.244.0.188:25,accept *:*
# Leave this set, or we'll be treated like a client.
OnionRouter 1
|