diff options
author | Roger Dingledine <arma@torproject.org> | 2007-06-12 08:19:02 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-06-12 08:19:02 +0000 |
commit | 622dd4927e1d3044fe34a1ec6c9785e044923953 (patch) | |
tree | de29fbccc1c895756dc49cf0097805846011a22e /src/config/torrc.sample.in | |
parent | c0b28adc65f170867740168af1d752f0c9dc8384 (diff) | |
download | tor-622dd4927e1d3044fe34a1ec6c9785e044923953.tar.gz tor-622dd4927e1d3044fe34a1ec6c9785e044923953.zip |
change the BandwidthRate/BandwidthBurst in the torrc
to RelayBandwidthRate/RelayBandwidthBurst, since that's
what most users will actually want. also flesh out the
torrc.complete entries and fix a few typos. based on
patch from "Armedblowfish".
svn:r10570
Diffstat (limited to 'src/config/torrc.sample.in')
-rw-r--r-- | src/config/torrc.sample.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index 7792ffee2a..73bc05089d 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -1,5 +1,5 @@ ## Configuration file for a typical Tor user -## Last updated 8 October 2006 for Tor 0.1.2.3-alpha. +## Last updated 12 June 2007 for Tor 0.2.0.3-alpha. ## (May or may not work for older or newer versions of Tor.) ## ## Lines that begin with "## " try to explain what's going on. Lines @@ -89,10 +89,11 @@ SocksListenAddress 127.0.0.1 # accept connections only from localhost ## The IP or FQDN for your server. Leave commented out and Tor will guess. #Address noname.example.com -## Define these to limit your bandwidth usage. Note that BandwidthRate -## must be at least 20 KB. -#BandwidthRate 100 KB # Throttle traffic to 100KB/s (800Kbps) -#BandwidthBurst 200 KB # But allow bursts up to 200KB/s (1600Kbps) +## Define these to limit the bandwidth usage of relayed (server) +## traffic. Your own traffic is still unthrottled. +## Note that RelayBandwidthRate must be at least 20 KB. +#RelayBandwidthRate 100 KB # Throttle traffic to 100KB/s (800Kbps) +#RelayBandwidthBurst 200 KB # But allow bursts up to 200KB/s (1600Kbps) ## Contact info to be published in the directory, so we can contact you ## if your server is misconfigured or something else goes wrong. |