diff options
author | Roger Dingledine <arma@torproject.org> | 2005-01-19 06:06:04 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-01-19 06:06:04 +0000 |
commit | bd2d740b49cd136751fbe5836d0e398b7eb8b03e (patch) | |
tree | 6a8c7118589833d9237055be9f6fc82be04ceeba | |
parent | e94e7ada4317458963ce1c6a54e5ef6a9955bf03 (diff) | |
download | tor-bd2d740b49cd136751fbe5836d0e398b7eb8b03e.tar.gz tor-bd2d740b49cd136751fbe5836d0e398b7eb8b03e.zip |
make it clearer why FooPort and FooBindAddress are separate
svn:r3369
-rw-r--r-- | src/config/torrc.sample.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index 49ae047498..17eef46d15 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -91,15 +91,17 @@ AllowUnverifiedNodes middle,rendezvous ## Required: what port to advertise for tor connections #ORPort 9001 ## If you want to listen on a port other than the one advertised -## in ORPort, uncomment the line below. You'll need to do ipchains -## or other port forwarding yourself to make this work. +## in ORPort (e.g. to advertise 443 but bind to 9090), uncomment +## the line below. You'll need to do ipchains or other port forwarding +## yourself to make this work. #ORBindAddress 0.0.0.0:9090 ## Uncomment this to mirror the directory for others (please do) #DirPort 9030 # what port to advertise for directory connections ## If you want to listen on a port other than the one advertised -## in DirPort, uncomment the line below. You'll need to do ipchains -## or other port forwarding yourself to make this work. +## in DirPort (e.g. to advertise 80 but bind 9091), uncomment the line +## below. You'll need to do ipchains or other port forwarding yourself +## to make this work. #DirBindAddress 0.0.0.0:9091 ## A comma-separated list of exit policies. They're considered first |