torrc.complete.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. ####################################################################
  2. ## This config file is divided into four sections. They are:
  3. ## 1. Global Options (clients and servers)
  4. ## 2. Client Options Only
  5. ## 3. Server Options Only
  6. ## 4. Directory Server Options (for running your own Tor network)
  7. ## 5. Hidden Service Options (clients and servers)
  8. ##
  9. ## The conventions used are:
  10. ## double hash (##) is for summary text about the config option;
  11. ## single hash (#) is for the config option; and,
  12. ## the config option is always after the text.
  13. ####################################################################
  14. ## Section 1: Global Options (clients and servers)
  15. ## A token bucket limits the average incoming bandwidth on this node
  16. ## to the specified number of bytes per second. (Default: 2MB)
  17. #BandwidthRate N bytes|KB|MB|GB|TB
  18. ## Limit the maximum token bucket size (also known as the burst) to
  19. ## the given number of bytes. (Default: 5 MB)
  20. #BandwidthBurst N bytes|KB|MB|GB|TB
  21. ## If set, we will not advertise more than this amount of bandwidth
  22. ## for our BandwidthRate. Server operators who want to reduce the
  23. ## number of clients who ask to build circuits through them (since
  24. ## this is proportional to advertised bandwidth rate) can thus
  25. ## reduce the CPU demands on their server without impacting
  26. ## network performance.
  27. #MaxAdvertisedBandwidth N bytes|KB|MB|GB|TB
  28. ## If set, Tor will accept connections from the same machine
  29. ## (localhost only) on this port, and allow those connections to
  30. ## control the Tor process using the Tor Control Protocol
  31. ## (described in control-spec.txt). Note: unless you also specify
  32. ## one of HashedControlPassword or CookieAuthentication, setting
  33. ## this option will cause Tor to allow any process on the local
  34. ## host to control it.
  35. #ControlPort Port
  36. ## Don’t allow any connections on the control port except when the
  37. ## other process knows the password whose one-way hash is
  38. ## hashed_password. You can compute the hash of a password by
  39. ## running "tor --hash-password password".
  40. #HashedControlPassword hashed_password
  41. ## If this option is set to 1, don’t allow any connections on the
  42. ## control port except when the connecting process knows the
  43. ## contents of a file named "control_auth_cookie", which Tor will
  44. ## create in its data directory. This authentication method
  45. ## should only be used on systems with good filesystem security.
  46. ## (Default: 0)
  47. #CookieAuthentication 0|1
  48. ## Store working data in DIR (Default: /usr/local/var/lib/tor)
  49. #DataDirectory DIR
  50. ## Every time the specified period elapses, Tor downloads a direc-
  51. ## tory. A directory contains a signed list of all known servers
  52. ## as well as their current liveness status. A value of "0 sec-
  53. ## onds" tells Tor to choose an appropriate default.
  54. ## (Default: 1 hour for clients, 20 minutes for servers)
  55. #DirFetchPeriod N seconds|minutes|hours|days|weeks
  56. ## Tor only trusts directories signed with one of these keys, and
  57. ## uses the given addresses to connect to the trusted directory
  58. ## servers. If no DirServer lines are specified, Tor uses the built-in
  59. ## defaults (moria1, moria2, tor26), so you can leave this alone unless
  60. ## you need to change it.
  61. ##
  62. ## WARNING! Changing these options will make your Tor behave
  63. ## differently from everyone else's, and hurt your anonymity. Even
  64. ## uncommenting these lines is a bad idea. They are the defaults now,
  65. ## but the defaults may change in the future, leaving you behind.
  66. ##
  67. #DirServer moria1 v1 18.244.0.188:9031 FFCB 46DB 1339 DA84 674C 70D7 CB58 6434 C437 0441
  68. #DirServer moria2 v1 18.244.0.114:80 719B E45D E224 B607 C537 07D0 E214 3E2D 423E 74CF
  69. #DirServer tor26 v1 86.59.21.38:80 847B 1F85 0344 D787 6491 A548 92F9 0493 4E4E B85D
  70. ## On startup, setgid to this user.
  71. #Group GID
  72. ## Tor will make all its directory requests through this host:port
  73. ## (or host:80 if port is not specified), rather than connecting
  74. ## directly to any directory servers.
  75. #HttpProxy host[:port]
  76. ## If defined, Tor will use this username:password for Basic Http
  77. ## proxy authentication, as in RFC 2617. This is currently the
  78. ## only form of Http proxy authentication that Tor supports; feel
  79. ## free to submit a patch if you want it to support others.
  80. #HttpProxyAuthenticator username:password
  81. ## Tor will make all its OR (SSL) connections through this
  82. ## host:port (or host:443 if port is not specified), via HTTP CON-
  83. ## NECT rather than connecting directly to servers. You may want
  84. ## to set FascistFirewall to restrict the set of ports you might
  85. ## try to connect to, if your Https proxy only allows connecting
  86. ## to certain ports.
  87. #HttpsProxy host[:port]
  88. ## If defined, Tor will use this username:password for Basic Https
  89. ## proxy authentication, as in RFC 2617. This is currently the
  90. ## only form of Https proxy authentication that Tor supports; feel
  91. ## free to submit a patch if you want it to support others.
  92. #HttpsProxyAuthenticator username:password
  93. ## To keep firewalls from expiring connections, send a padding
  94. ## keepalive cell every NUM seconds on open connections that are
  95. ## in use. If the connection has no open circuits, it will instead
  96. ## be closed after NUM seconds of idleness. (Default: 5 minutes)
  97. #KeepalivePeriod NUM
  98. ## Send all messages between minSeverity and maxSeverity to the
  99. ## standard output stream, the standard error stream, or to the
  100. ## system log. (The "syslog" value is only supported on Unix.)
  101. ## Recognized severity levels are debug, info, notice, warn, and
  102. ## err. If only one severity level is given, all messages of that
  103. ## level or higher will be sent to the listed destination.
  104. #Log minSeverity[-maxSeverity] stderr|stdout|syslog
  105. ## As above, but send log messages to the listed filename. The
  106. ## "Log" option may appear more than once in a configuration file.
  107. ## Messages are sent to all the logs that match their severity
  108. ## level.
  109. #Log minSeverity[-maxSeverity] file FILENAME
  110. ## Maximum number of simultaneous sockets allowed. You probably
  111. ## don’t need to adjust this. (Default: 1024)
  112. #MaxConn NUM
  113. ## Make all outbound connections originate from the IP address
  114. ## specified. This is only useful when you have multiple network
  115. ## interfaces, and you want all of Tor’s outgoing connections to
  116. ## use a single one.
  117. #OutboundBindAddress IP
  118. ## On startup, write our PID to FILE. On clean shutdown, remove
  119. ## FILE.
  120. #PIDFile FILE
  121. ## If 1, Tor forks and daemonizes to the background. (Default: 0)
  122. #RunAsDaemon 0|1
  123. ## If 1, Tor replaces potentially sensitive strings in the logs
  124. ## (e.g. addresses) with the string [scrubbed]. This way logs can
  125. ## still be useful, but they don’t leave behind personally identi-
  126. ## fying information about what sites a user might have visited.
  127. ## (Default: 1)
  128. #SafeLogging 0|1
  129. ## Every time the specified period elapses, Tor downloads signed
  130. ## status information about the current state of known servers. A
  131. ## value of "0 seconds" tells Tor to choose an appropriate
  132. ## default. (Default: 30 minutes for clients, 15 minutes for
  133. ## servers)
  134. #StatusFetchPeriod N seconds|minutes|hours|days|weeks
  135. ## On startup, setuid to this user.
  136. #User UID
  137. ## If non-zero, try to use crypto hardware acceleration when
  138. ## available. (Default: 1)
  139. #HardwareAccel 0|1
  140. ## Section 2: Client Options Only
  141. ## Where on our circuits should we allow Tor servers that the
  142. ## directory servers haven’t authenticated as "verified"?
  143. ## (Default: middle,rendezvous)
  144. #AllowUnverifiedNodes entry|exit|middle|introduction|rendezvous|...
  145. ## If set to 1, Tor will under no circumstances run as a server.
  146. ## The default is to run as a client unless ORPort is configured.
  147. ## (Usually, you don’t need to set this; Tor is pretty smart at
  148. ## figuring out whether you are reliable and high-bandwidth enough
  149. ## to be a useful server.)
  150. ## This option will likely be deprecated in the future; see the
  151. ## NoPublish option below. (Default: 0)
  152. #ClientOnly 0|1
  153. ## A list of preferred nodes to use for the first hop in the
  154. ## circuit, if possible.
  155. #EntryNodes nickname,nickname,...
  156. ## A list of preferred nodes to use for the last hop in the
  157. ## circuit, if possible.
  158. #ExitNodes nickname,nickname,...
  159. ## A list of nodes to never use when building a circuit.
  160. #ExcludeNodes nickname,nickname,...
  161. ## If 1, Tor will never use any nodes besides those listed in
  162. ## "exitnodes" for the last hop of a circuit.
  163. #StrictExitNodes 0|1
  164. ## If 1, Tor will never use any nodes besides those listed in
  165. ## "entrynodes" for the first hop of a circuit.
  166. #StrictEntryNodes 0|1
  167. ## If 1, Tor will only create outgoing connections to ORs running
  168. ## on ports that your firewall allows (defaults to 80 and 443; see
  169. ## FirewallPorts). This will allow you to run Tor as a client
  170. ## behind a firewall with restrictive policies, but will not allow
  171. ## you to run as a server behind such a firewall.
  172. #FascistFirewall 0|1
  173. ## A list of ports that your firewall allows you to connect to.
  174. ## Only used when FascistFirewall is set. (Default: 80, 443)
  175. #FirewallPorts PORTS
  176. ## A comma-separated list of IPs that your firewall allows you to
  177. ## connect to. Only used when FascistFirewall is set. The format
  178. ## is as for the addresses in ExitPolicy.
  179. ## For example, ’FirewallIPs 99.0.0.0/8, *:80’ means that your
  180. ## firewall allows connections to everything inside net 99, and
  181. ## to port 80 outside.
  182. #FirewallIPs ADDR[/MASK][:PORT]...
  183. ## A list of ports for services that tend to have long-running
  184. ## connections (e.g. chat and interactive shells). Circuits for
  185. ## streams that use these ports will contain only high-uptime
  186. ## nodes, to reduce the chance that a node will go down before the
  187. ## stream is finished. (Default: 21, 22, 706, 1863, 5050, 5190,
  188. ## 5222, 5223, 6667, 8300, 8888)
  189. #LongLivedPorts PORTS
  190. ## When a request for address arrives to Tor, it will rewrite it
  191. ## to newaddress before processing it. For example, if you always
  192. ## want connections to www.indymedia.org to exit via torserver
  193. ## (where torserver is the nickname of the server),
  194. ## use "MapAddress www.indymedia.org www.indymedia.org.torserver.exit".
  195. #MapAddress address newaddress
  196. ## Every NUM seconds consider whether to build a new circuit.
  197. ## (Default: 30 seconds)
  198. #NewCircuitPeriod NUM
  199. ## Feel free to reuse a circuit that was first used at most NUM
  200. ## seconds ago, but never attach a new stream to a circuit that is
  201. ## too old. (Default: 10 minutes)
  202. #MaxCircuitDirtiness NUM
  203. ## The named Tor servers constitute a "family" of similar or co-
  204. ## administered servers, so never use any two of them in the same
  205. ## circuit. Defining a NodeFamily is only needed when a server
  206. ## doesn’t list the family itself (with MyFamily). This option can
  207. ## be used multiple times.
  208. #NodeFamily nickname,nickname,...
  209. ## A list of preferred nodes to use for the rendezvous point, if
  210. ## possible.
  211. #RendNodes nickname,nickname,...
  212. ## A list of nodes to never use when choosing a rendezvous point.
  213. #RendExcludeNodes nickname,nickname,...
  214. ## Advertise this port to listen for connections from SOCKS-speak-
  215. ## ing applications. Set this to 0 if you don’t want to allow
  216. ## application connections. (Default: 9050)
  217. #SOCKSPort PORT
  218. ## Bind to this address to listen for connections from SOCKS-
  219. ## speaking applications. (Default: 127.0.0.1) You can also spec-
  220. ## ify a port (e.g. 192.168.0.1:9100). This directive can be spec-
  221. ## ified multiple times to bind to multiple addresses/ports.
  222. #SOCKSBindAddress IP[:PORT]
  223. ## Set an entrance policy for this server, to limit who can con-
  224. ## nect to the SOCKS ports. The policies have the same form as
  225. ## exit policies below.
  226. #SOCKSPolicy policy,policy,...
  227. ## For each value in the comma separated list, Tor will track
  228. ## recent connections to hosts that match this value and attempt
  229. ## to reuse the same exit node for each. If the value is prepended
  230. ## with a ’.’, it is treated as matching an entire domain. If one
  231. ## of the values is just a ’.’, it means match everything. This
  232. ## option is useful if you frequently connect to sites that will
  233. ## expire all your authentication cookies (ie log you out) if your
  234. ## IP address changes. Note that this option does have the disad-
  235. ## vantage of making it more clear that a given history is associ-
  236. ## ated with a single user. However, most people who would wish to
  237. ## observe this will observe it through cookies or other protocol-
  238. ## specific means anyhow.
  239. #TrackHostExits host,.domain,...
  240. ## Since exit servers go up and down, it is desirable to expire
  241. ## the association between host and exit server after NUM seconds.
  242. ## The default is 1800 seconds (30 minutes).
  243. #TrackHostExitsExpire NUM
  244. ## If this option is set to 1, we pick a few entry servers as our
  245. ## "helpers", and try to use only those fixed entry servers. This
  246. ## is desirable, because constantly changing servers increases the
  247. ## odds that an adversary who owns some servers will observe a
  248. ## fraction of your paths. (Defaults to 0; will eventually
  249. ## default to 1.)
  250. #UseHelperNodes 0|1
  251. ## If UseHelperNodes is set to 1, we will try to pick a total of
  252. ## NUM helper nodes as entries for our circuits. (Defaults to 3.)
  253. #NumHelperNodes NUM
  254. ## Section 3: Server Options Only
  255. ## The IP or fqdn of this server (e.g. moria.mit.edu). You can
  256. ## leave this unset, and Tor will guess your IP.
  257. #Address address
  258. ## Administrative contact information for server.
  259. #ContactInfo email_address
  260. ## Set an exit policy for this server. Each policy is of the form
  261. ## "accept|reject ADDR[/MASK][:PORT]". If /MASK is omitted then
  262. ## this policy just applies to the host given. Instead of giving
  263. ## a host or network you can also use "*" to denote the universe
  264. ## (0.0.0.0/0). PORT can be a single port number, an interval of
  265. ## ports "FROM_PORT-TO_PORT", or "*". If PORT is omitted, that
  266. ## means "*".
  267. ##
  268. ## For example, "reject 127.0.0.1:*,reject 192.168.1.0/24:*,accept
  269. ## *:*" would reject any traffic destined for localhost and any
  270. ## 192.168.1.* address, but accept anything else.
  271. ##
  272. ## This directive can be specified multiple times so you don’t
  273. ## have to put it all on one line.
  274. ##
  275. ## See RFC 3330 for more details about internal and reserved IP
  276. ## address space. Policies are considered first to last, and the
  277. ## first match wins. If you want to _replace_ the default exit
  278. ## policy, end your exit policy with either a reject *:* or an
  279. ## accept *:*. Otherwise, you’re _augmenting_ (prepending to) the
  280. ## default exit policy. The default exit policy is:
  281. ## reject 0.0.0.0/8
  282. ## reject 169.254.0.0/16
  283. ## reject 127.0.0.0/8
  284. ## reject 192.168.0.0/16
  285. ## reject 10.0.0.0/8
  286. ## reject 172.16.0.0/12
  287. ## reject *:25
  288. ## reject *:119
  289. ## reject *:135-139
  290. ## reject *:445
  291. ## reject *:1214
  292. ## reject *:4661-4666
  293. ## reject *:6346-6429
  294. ## reject *:6699
  295. ## reject *:6881-6999
  296. ## accept *:*
  297. #ExitPolicy policy,policy,...
  298. ## If you have more than this number of onionskins queued for
  299. ## decrypt, reject new ones. (Default: 100)
  300. #MaxOnionsPending NUM
  301. ## Declare that this Tor server is controlled or administered by a
  302. ## group or organization identical or similar to that of the other
  303. ## named servers. When two servers both declare that they are in
  304. ## the same ’family’, Tor clients will not use them in the same
  305. ## circuit. (Each server only needs to list the other servers in
  306. ## its family; it doesn’t need to list itself, but it won’t hurt.)
  307. #MyFamily nickname,nickname,...
  308. ## Set the server’s nickname to ’name’.
  309. #Nickname name
  310. ## If you set NoPublish 1, Tor will act as a server if you have an
  311. ## ORPort defined, but it will not publish its descriptor to the
  312. ## dirservers. This option is useful if you're testing out your
  313. ## server, or if you're using alternate dirservers (e.g. for other
  314. ## Tor networks such as Blossom). (Default: 0)
  315. #NoPublish 0|1
  316. ## How many processes to use at once for decrypting onionskins.
  317. ## (Default: 1)
  318. #NumCPUs num
  319. ## Advertise this port to listen for connections from Tor clients
  320. ## and servers.
  321. #ORPort PORT
  322. ## Bind to this IP address to listen for connections from Tor
  323. ## clients and servers. If you specify a port, bind to this port
  324. ## rather than the one specified in ORPort. (Default: 0.0.0.0)
  325. #ORBindAddress IP[:PORT]
  326. ## Whenever an outgoing connection tries to connect to one of a
  327. ## given set of addresses, connect to target (an address:port
  328. ## pair) instead. The address pattern is given in the same format
  329. ## as for an exit policy. The address translation applies after
  330. ## exit policies are applied. Multiple RedirectExit options can
  331. ## be used: once any one has matched successfully, no subsequent
  332. ## rules are considered. You can specify that no redirection is
  333. ## to be performed on a given set of addresses by using the spe-
  334. ## cial target string "pass", which prevents subsequent rules from
  335. ## being considered.
  336. #RedirectExit pattern target
  337. ## When we get a SIGINT and we're a server, we begin shutting
  338. ## down: we close listeners and start refusing new circuits. After
  339. ## NUM seconds, we exit. If we get a second SIGINT, we exit imme-
  340. ## diately. (Default: 30 seconds)
  341. #ShutdownWaitLengthNUM
  342. ## Every time the specified period elapses, Tor uploads its server
  343. ## descriptors to the directory servers. This information is also
  344. ## uploaded whenever it changes. (Default: 20 minutes)
  345. #DirPostPeriod N seconds|minutes|hours|days|weeks
  346. ## A token bucket limits the average relayed bandwidth (server
  347. ## traffic only, not client traffic) on this node to the specified
  348. ## number of bytes per second.
  349. #RelayBandwidthRate N bytes|KB|MB|GB|TB
  350. ## Limit the maximum token bucket size (also known as the burst) for
  351. ## relayed traffic (server traffic only, not client traffic) to the
  352. ## given number of bytes.
  353. #RelayBandwidthBurst N bytes|KB|MB|GB|TB
  354. ## Never send more than the specified number of bytes in a given
  355. ## accounting period, or receive more than that number in the
  356. ## period. For example, with AccountingMax set to 1 GB, a server
  357. ## could send 900 MB and receive 800 MB and continue running. It
  358. ## will only hibernate once one of the two reaches 1 GB. When the
  359. ## number of bytes is exhausted, Tor will hibernate until some
  360. ## time in the next accounting period. To prevent all servers
  361. ## from waking at the same time, Tor will also wait until a random
  362. ## point in each period before waking up. If you have bandwidth
  363. ## cost issues, enabling hibernation is preferable to setting a
  364. ## low bandwidth, since it provides users with a collection of
  365. ## fast servers that are up some of the time, which is more useful
  366. ## than a set of slow servers that are always "available".
  367. #AccountingMax N bytes|KB|MB|GB|TB
  368. ## Specify how long accounting periods last. If month is given,
  369. ## each accounting period runs from the time HH:MM on the dayth
  370. ## day of one month to the same day and time of the next. (The
  371. ## day must be between 1 and 28.) If week is given, each account-
  372. ## ing period runs from the time HH:MM of the dayth day of one
  373. ## week to the same day and time of the next week, with Monday as
  374. ## day 1 and Sunday as day 7. If day is given, each accounting
  375. ## period runs from the time HH:MM each day to the same time on
  376. ## the next day. All times are local, and given in 24-hour time.
  377. ## (Defaults to "month 1 0:00".)
  378. #AccountingStart day|week|month [day] HH:MM
  379. ## Section 4: Directory Server Options (for running your own Tor
  380. ## network)
  381. ## When this option is set to 1, Tor operates as an authoritative
  382. ## directory server. Instead of caching the directory, it gener-
  383. ## ates its own list of good servers, signs it, and sends that to
  384. ## the clients. Unless the clients already have you listed as a
  385. ## trusted directory, you probably do not want to set this option.
  386. ## Please coordinate with the other admins at
  387. ## tor-ops@freehaven.net if you think you should be a directory.
  388. #AuthoritativeDirectory 0|1
  389. ## Advertise the directory service on this port.
  390. #DirPort PORT
  391. ## Bind the directory service to this address. If you specify a
  392. ## port, bind to this port rather than the one specified in DirPort.
  393. ## (Default: 0.0.0.0)
  394. #DirBindAddress IP[:PORT]
  395. ## Set an entrance policy for this server, to limit who can con-
  396. ## nect to the directory ports. The policies have the same form
  397. ## as exit policies above.
  398. #DirPolicy policy,policy,...
  399. ## STRING is a command-separated list of Tor versions currently
  400. ## believed to be safe. The list is included in each directory,
  401. ## and nodes which pull down the directory learn whether they need
  402. ## to upgrade. This option can appear multiple times: the values
  403. ## from multiple lines are spliced together.
  404. #RecommendedVersions STRING
  405. ## If set to 1, Tor will accept router descriptors with arbitrary
  406. ## "Address" elements. Otherwise, if the address is not an IP or
  407. ## is a private IP, it will reject the router descriptor. Defaults
  408. ## to 0.
  409. #DirAllowPrivateAddresses 0|1
  410. ## If set to 1, Tor tries to build circuits through all of the
  411. ## servers it knows about, so it can tell which are up and which
  412. ## are down. This option is only useful for authoritative direc-
  413. ## tories, so you probably don't want to use it.
  414. #RunTesting 0|1
  415. ## Section 5: Hidden Service Options (clients and servers)
  416. ## Store data files for a hidden service in DIRECTORY. Every hid-
  417. ## den service must have a separate directory. You may use this
  418. ## option multiple times to specify multiple services.
  419. #HiddenServiceDir DIRECTORY
  420. ## Configure a virtual port VIRTPORT for a hidden service. You
  421. ## may use this option multiple times; each time applies to the
  422. ## service using the most recent hiddenservicedir. By default,
  423. ## this option maps the virtual port to the same port on
  424. ## 127.0.0.1. You may override the target port, address, or both
  425. ## by specifying a target of addr, port, or addr:port.
  426. #HiddenServicePort VIRTPORT [TARGET]
  427. ## If possible, use the specified nodes as introduction points for
  428. ## the hidden service. If this is left unset, Tor will be smart
  429. ## and pick some reasonable ones; most people can leave this unset.
  430. #HiddenServiceNodes nickname,nickname,...
  431. ## Do not use the specified nodes as introduction points for the
  432. ## hidden service. In normal use there is no reason to set this.
  433. #HiddenServiceExcludeNodes nickname,nickname,...
  434. ## Publish the given rendezvous service descriptor versions for the
  435. ## hidden service.
  436. #HiddenServiceVersion 0,2
  437. ## Every time the specified period elapses, Tor uploads any ren-
  438. ## dezvous service descriptors to the directory servers. This
  439. ## information is also uploaded whenever it changes.
  440. ## (Default: 20 minutes)
  441. #RendPostPeriod N seconds|minutes|hours|days|weeks
  442. #