summaryrefslogtreecommitdiff
path: root/doc/tor.1.in
AgeCommit message (Collapse)Author
2010-01-27Convert the Tor manpage to asciidoc.Sebastian Hahn
This should be a very faithful conversion, preserving as much of the layout of the old manpage as possible. This wasn't possible for the nt-service and the DataDirectory/state parts. See a later commit for some small cleanups. Tiago Faria helped with the asciidoc conversion, big thanks!
2010-01-15man page entries for PerConnBW{Rate,Burst}Roger Dingledine
2009-12-21a changelog and doc fixes for the strictnodes workRoger Dingledine
2009-12-19fix some typosRoger Dingledine
2009-12-18Merge branch 'ewma'Nick Mathewson
2009-12-17Remove v0 hidden service statistics code.Karsten Loesing
The HSAuthorityRecordStats option was used to track statistics of overall hidden service usage on the version 0 hidden service authorities. With the version 2 hidden service directories being deployed and version 0 descriptors being phased out, these statistics are not as useful anymore. Goodbye, you fine piece of software; my first major code contribution to Tor.
2009-12-15Document CircuitPriorityHalflife on the manpageNick Mathewson
2009-12-12Allow SafeLogging to exclude client related informationSebastian Hahn
2009-11-22add a minimum for CircuitStreamTimeout, plus a man pageRoger Dingledine
plus some other unrelated touchups that have been sitting in my sandbox
2009-10-27Implement DisableAllSwap to avoid putting secret info in page files.Jacob Appelbaum
This commit implements a new config option: 'DisableAllSwap' This option probably only works properly when Tor is started as root. We added two new functions: tor_mlockall() and tor_set_max_memlock(). tor_mlockall() attempts to mlock() all current and all future memory pages. For tor_mlockall() to work properly we set the process rlimits for memory to RLIM_INFINITY (and beyond) inside of tor_set_max_memlock(). We behave differently from mlockall() by only allowing tor_mlockall() to be called one single time. All other calls will result in a return code of 1. It is not possible to change DisableAllSwap while running. A sample configuration item was added to the torrc.complete.in config file. A new item in the man page for DisableAllSwap was added. Thanks to Moxie Marlinspike and Chris Palmer for their feedback on this patch. Please note that we make no guarantees about the quality of your OS and its mlock/mlockall implementation. It is possible that this will do nothing at all. It is also possible that you can ulimit the mlock properties of a given user such that root is not required. This has not been extensively tested and is unsupported. I have included some comments for possible ways we can handle this on win32.
2009-10-01fix the wiki link in doc pages. remove obsolete FAQ.Roger Dingledine
2009-09-16Merge commit 'sebastian/manpage'Roger Dingledine
2009-09-15it is cached-descriptors now, not cached-routersSebastian Hahn
2009-09-15revert the month in the man page, so we don't drive weasel madRoger Dingledine
2009-09-15ConsensusParams config option lists key=value paramsRoger Dingledine
finishes the authority-operator interface side of proposal 167.
2009-08-27HiddenServiceVersion must be set to 2 currently.tor-0.2.2.1-alphaSebastian Hahn
0d68da2381780e2f8010b52a9e062947554699d5 removed support for Version 0, but didn't fix the manpage.
2009-08-26Merge commit 'karsten/proposal-166-impl-master'Nick Mathewson
2009-08-26Merge commit 'public/socks-client'Nick Mathewson
Resolved conflict in: src/or/or.h
2009-08-19Write all statistics to disk exactly every 24 hours.Karsten Loesing
2009-08-18Update dir-spec.txt and man page.Karsten Loesing
2009-08-09Merge commit 'arma/dotexit'Nick Mathewson
2009-08-09Merge commit 'origin/maint-0.2.1'Nick Mathewson
2009-08-07oops, fix typoRoger Dingledine
2009-08-07Disable .exit notation unless AllowDotExit is 1.Roger Dingledine
2009-08-01Make configuration of hidden services with authorization somewhat clearer.Karsten Loesing
2009-07-13Add support for a new option: FetchDirInfoExtraEarlyJacob Appelbaum
This new option will allow clients to download the newest fresh consensus much sooner than they normally would do so, even if they previously set FetchDirInfoEarly. This includes a proper ChangeLog entry and an updated man page.
2009-06-19Enable Tor to connect through SOCKS 4/5 proxiesChristopher Davis
Added a sanity check in config.c and a check in directory.c directory_initiate_command_rend() to catch any direct connection attempts when a socks proxy is configured.
2009-05-31Merge branch 'hardware_accel_improvements'Nick Mathewson
2009-05-30Remove warning about untested HardwareAccel option and clarify usage.Martin Peck
2009-05-30Add documentation for new AccelName and AccelDir dynamic hardware ↵Martin Peck
acceleration engine options.
2009-05-28Fixes to spelling fixes. Thanks, Roger!Nick Mathewson
2009-05-27Spell-check Tor.Nick Mathewson
2009-02-01Minor adjustment to man page.Andrew Lewman
svn:r18365
2009-01-21note that BridgeRecordUsageByCountry is on by default (but itRoger Dingledine
still only takes effect if BridgeRelay is set) svn:r18202
2009-01-05Better explain the PublishServerDescriptor option in the manpageSebastian Hahn
PublishServerDescriptor 1 means "publish to the relevant authority", not "publish to v2,v3 authorities". Also adjust the time in the manpage to January 2009 svn:r17909
2008-12-17Remove RedirectExit feature; it has been deprecated since 0.2.0.3-alphaNick Mathewson
svn:r17663
2008-12-17Rename ServerDNSAllowBrokenResolvConf to ServerDNSAllowBrokenConfig.Nick Mathewson
(Many users have no idea what a resolv.conf is, and shouldn't be forced to learn. The old option will keep working for now.) Also, document it. svn:r17661
2008-12-17manpage: stop mentioning the possibility that Tor has been built without ↵Nick Mathewson
eventdns. That hasn't been possible since 0.2.0.1-alpha svn:r17655
2008-12-17Add manpage documentation for ServerDNSRandomizeCase.Nick Mathewson
svn:r17654
2008-12-07New DirPortFrontPage option that takes an html file and publishes it as "/" ↵Jacob Appelbaum
on the DirPort. Now relay operators can provide a disclaimer without needin to set up a separate webserver. There's a sample disclaimer in contrib/tor-exit-notice.html. svn:r17500
2008-11-07Patch from Jacob Appelbaum and me to make User option more robust, properly ↵Steven Murdoch
set supplementary groups, deprecated the Group option, and log more information on credential switching svn:r17200
2008-09-26Proposal 152 implementation from Josh Albrecht, with tweaks.Nick Mathewson
svn:r16983
2008-09-25Add country-code support to configured node lists to implement the ↵Nick Mathewson
ever-popular "no exits in Monaco" feature (ExcludeExitNodes {MC}). Also allow country codes and IP ranges in ExitNodes. (EntryNodes needs more work.) Based on code by Robert Hogan. Needs more testing. svn:r16966
2008-09-24All relays now store and serve v2 hidden service descriptors by default (not ↵Karsten Loesing
only directory mirrors). svn:r16961
2008-09-24Add patch 4 from Karsten for proposal 121, slightly modified. Karsten ↵Nick Mathewson
should definitely re-review the bits I changed. svn:r16955
2008-09-23Fix for bug 797 (by arma, with tweaks): always use create_fast for circuits ↵Nick Mathewson
where we do not know an onion key. svn:r16942
2008-09-13Allow ports 465 and 587 in the default exit policy again. We hadRoger Dingledine
rejected them in 0.1.0.15, because back in 2005 they were commonly misconfigured and ended up as spam targets. We hear they are better locked down these days. svn:r16898
2008-09-11Directory mirrors store and serve v2 hidden service descriptors by default.Karsten Loesing
svn:r16858
2008-08-12we were accidentally omitting a line from the man page for theRoger Dingledine
automaphostsonresolve config option, because nroff/troff are just too much like text. svn:r16507
2008-08-05Take out the TestVia config option, since it was a workaround fortor-0.2.1.4-alphaRoger Dingledine
a bug that was fixed in Tor 0.1.1.21. svn:r16409