]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - docs/configuration.rst
update peers.preferred docs re: Node Keys
[tahoe-lafs/tahoe-lafs.git] / docs / configuration.rst
1 .. -*- coding: utf-8-with-signature -*-
2
3 =============================
4 Configuring a Tahoe-LAFS node
5 =============================
6
7 1.   `Node Types`_
8 2.  `Overall Node Configuration`_
9 3.  `Client Configuration`_
10 4.  `Storage Server Configuration`_
11 5.  `Frontend Configuration`_
12 6.  `Running A Helper`_
13 7.  `Running An Introducer`_
14 8.  `Other Files in BASEDIR`_
15 9.  `Other files`_
16 10. `Example`_
17
18 A Tahoe-LAFS node is configured by writing to files in its base directory.
19 These files are read by the node when it starts, so each time you change
20 them, you need to restart the node.
21
22 The node also writes state to its base directory, so it will create files on
23 its own.
24
25 This document contains a complete list of the config files that are examined
26 by the client node, as well as the state files that you'll observe in its
27 base directory.
28
29 The main file is named "``tahoe.cfg``", and is an ".INI"-style configuration
30 file (parsed by the Python stdlib 'ConfigParser' module: "``[name]``" section
31 markers, lines with "``key.subkey: value``", rfc822-style
32 continuations). There are also other files containing information that does
33 not easily fit into this format. The "``tahoe create-node``" or "``tahoe
34 create-client``" command will create an initial ``tahoe.cfg`` file for
35 you. After creation, the node will never modify the ``tahoe.cfg`` file: all
36 persistent state is put in other files.
37
38 The item descriptions below use the following types:
39
40 ``boolean``
41
42     one of (True, yes, on, 1, False, off, no, 0), case-insensitive
43
44 ``strports string``
45
46     a Twisted listening-port specification string, like "``tcp:80``" or
47     "``tcp:3456:interface=127.0.0.1``". For a full description of the format,
48     see `the Twisted strports documentation`_.  Please note, if interface= is
49     not specified, Tahoe-LAFS will attempt to bind the port specified on all
50     interfaces.
51
52 ``FURL string``
53
54     a Foolscap endpoint identifier, like
55     ``pb://soklj4y7eok5c3xkmjeqpw@192.168.69.247:44801/eqpwqtzm``
56
57 .. _the Twisted strports documentation: https://twistedmatrix.com/documents/current/api/twisted.application.strports.html
58
59
60 Node Types
61 ==========
62
63 A node can be a client/server, an introducer, a statistics gatherer, or a
64 key generator.
65
66 Client/server nodes provide one or more of the following services:
67
68 * web-API service
69 * SFTP service
70 * FTP service
71 * drop-upload service
72 * helper service
73 * storage service.
74
75 A client/server that provides storage service (i.e. storing shares for
76 clients) is called a "storage server". If it provides any of the other
77 services, it is a "storage client" (a node can be both a storage server and a
78 storage client). A client/server node that provides web-API service is called
79 a "gateway".
80
81
82 Overall Node Configuration
83 ==========================
84
85 This section controls the network behavior of the node overall: which ports
86 and IP addresses are used, when connections are timed out, etc. This
87 configuration applies to all node types and is independent of the services
88 that the node is offering.
89
90 If your node is behind a firewall or NAT device and you want other clients to
91 connect to it, you'll need to open a port in the firewall or NAT, and specify
92 that port number in the tub.port option. If behind a NAT, you *may* need to
93 set the ``tub.location`` option described below.
94
95 ``[node]``
96
97 ``nickname = (UTF-8 string, optional)``
98
99     This value will be displayed in management tools as this node's
100     "nickname". If not provided, the nickname will be set to "<unspecified>".
101     This string shall be a UTF-8 encoded Unicode string.
102
103 ``web.port = (strports string, optional)``
104
105     This controls where the node's web server should listen, providing node
106     status and, if the node is a client/server, providing web-API service as
107     defined in webapi.rst_.
108
109     This file contains a Twisted "strports" specification such as "``3456``"
110     or "``tcp:3456:interface=127.0.0.1``". The "``tahoe create-node``" or
111     "``tahoe create-client``" commands set the ``web.port`` to
112     "``tcp:3456:interface=127.0.0.1``" by default; this is overridable by the
113     ``--webport`` option. You can make it use SSL by writing
114     "``ssl:3456:privateKey=mykey.pem:certKey=cert.pem``" instead.
115
116     If this is not provided, the node will not run a web server.
117
118 ``web.static = (string, optional)``
119
120     This controls where the ``/static`` portion of the URL space is
121     served. The value is a directory name (``~username`` is allowed, and
122     non-absolute names are interpreted relative to the node's basedir), which
123     can contain HTML and other files. This can be used to serve a
124     Javascript-based frontend to the Tahoe-LAFS node, or other services.
125
126     The default value is "``public_html``", which will serve
127     ``BASEDIR/public_html`` .  With the default settings,
128     ``http://127.0.0.1:3456/static/foo.html`` will serve the contents of
129     ``BASEDIR/public_html/foo.html`` .
130
131 ``tub.port = (integer, optional)``
132
133     This controls which port the node uses to accept Foolscap connections
134     from other nodes. If not provided, the node will ask the kernel for any
135     available port. The port will be written to a separate file (named
136     ``client.port`` or ``introducer.port``), so that subsequent runs will
137     re-use the same port.
138
139 ``tub.location = (string, optional)``
140
141     In addition to running as a client, each Tahoe-LAFS node also runs as a
142     server, listening for connections from other Tahoe-LAFS clients. The node
143     announces its location by publishing a "FURL" (a string with some
144     connection hints) to the Introducer. The string it publishes can be found
145     in ``BASEDIR/private/storage.furl`` . The ``tub.location`` configuration
146     controls what location is published in this announcement.
147
148     If you don't provide ``tub.location``, the node will try to figure out a
149     useful one by itself, by using tools like "``ifconfig``" to determine the
150     set of IP addresses on which it can be reached from nodes both near and
151     far.  It will also include the TCP port number on which it is listening
152     (either the one specified by ``tub.port``, or whichever port was assigned
153     by the kernel when ``tub.port`` is left unspecified).
154
155     You might want to override this value if your node lives behind a
156     firewall that is doing inbound port forwarding, or if you are using other
157     proxies such that the local IP address or port number is not the same one
158     that remote clients should use to connect. You might also want to control
159     this when using a Tor proxy to avoid revealing your actual IP address
160     through the Introducer announcement.
161
162     The value is a comma-separated string of host:port location hints, like
163     this::
164
165       123.45.67.89:8098,tahoe.example.com:8098,127.0.0.1:8098
166
167     A few examples:
168
169     * Emulate default behavior, assuming your host has IP address
170       123.45.67.89 and the kernel-allocated port number was 8098::
171
172         tub.port = 8098
173         tub.location = 123.45.67.89:8098,127.0.0.1:8098
174
175     * Use a DNS name so you can change the IP address more easily::
176
177         tub.port = 8098
178         tub.location = tahoe.example.com:8098
179
180     * Run a node behind a firewall (which has an external IP address) that
181       has been configured to forward port 7912 to our internal node's port
182       8098::
183
184         tub.port = 8098
185         tub.location = external-firewall.example.com:7912
186
187     * Run a node behind a Tor proxy (perhaps via ``torsocks``), in
188       client-only mode (i.e. we can make outbound connections, but other
189       nodes will not be able to connect to us). The literal
190       '``unreachable.example.org``' will not resolve, but will serve as a
191       reminder to human observers that this node cannot be reached. "Don't
192       call us.. we'll call you"::
193
194         tub.port = 8098
195         tub.location = unreachable.example.org:0
196
197     * Run a node behind a Tor proxy, and make the server available as a Tor
198       "hidden service". (This assumes that other clients are running their
199       node with ``torsocks``, such that they are prepared to connect to a
200       ``.onion`` address.) The hidden service must first be configured in
201       Tor, by giving it a local port number and then obtaining a ``.onion``
202       name, using something in the ``torrc`` file like::
203
204         HiddenServiceDir /var/lib/tor/hidden_services/tahoe
205         HiddenServicePort 29212 127.0.0.1:8098
206
207       once Tor is restarted, the ``.onion`` hostname will be in
208       ``/var/lib/tor/hidden_services/tahoe/hostname``. Then set up your
209       ``tahoe.cfg`` like::
210
211         tub.port = 8098
212         tub.location = ualhejtq2p7ohfbb.onion:29212
213
214     Most users will not need to set ``tub.location``.
215
216 ``log_gatherer.furl = (FURL, optional)``
217
218     If provided, this contains a single FURL string that is used to contact a
219     "log gatherer", which will be granted access to the logport. This can be
220     used to gather operational logs in a single place. Note that in previous
221     releases of Tahoe-LAFS, if an old-style ``BASEDIR/log_gatherer.furl``
222     file existed it would also be used in addition to this value, allowing
223     multiple log gatherers to be used at once. As of Tahoe-LAFS v1.9.0, an
224     old-style file is ignored and a warning will be emitted if one is
225     detected. This means that as of Tahoe-LAFS v1.9.0 you can have at most
226     one log gatherer per node. See ticket `#1423`_ about lifting this
227     restriction and letting you have multiple log gatherers.
228
229     .. _`#1423`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/1423
230
231 ``timeout.keepalive = (integer in seconds, optional)``
232
233 ``timeout.disconnect = (integer in seconds, optional)``
234
235     If ``timeout.keepalive`` is provided, it is treated as an integral number
236     of seconds, and sets the Foolscap "keepalive timer" to that value. For
237     each connection to another node, if nothing has been heard for a while,
238     we will attempt to provoke the other end into saying something. The
239     duration of silence that passes before sending the PING will be between
240     KT and 2*KT. This is mainly intended to keep NAT boxes from expiring idle
241     TCP sessions, but also gives TCP's long-duration keepalive/disconnect
242     timers some traffic to work with. The default value is 240 (i.e. 4
243     minutes).
244
245     If timeout.disconnect is provided, this is treated as an integral number
246     of seconds, and sets the Foolscap "disconnect timer" to that value. For
247     each connection to another node, if nothing has been heard for a while,
248     we will drop the connection. The duration of silence that passes before
249     dropping the connection will be between DT-2*KT and 2*DT+2*KT (please see
250     ticket `#521`_ for more details). If we are sending a large amount of
251     data to the other end (which takes more than DT-2*KT to deliver), we
252     might incorrectly drop the connection. The default behavior (when this
253     value is not provided) is to disable the disconnect timer.
254
255     See ticket `#521`_ for a discussion of how to pick these timeout values.
256     Using 30 minutes means we'll disconnect after 22 to 68 minutes of
257     inactivity. Receiving data will reset this timeout, however if we have
258     more than 22min of data in the outbound queue (such as 800kB in two
259     pipelined segments of 10 shares each) and the far end has no need to
260     contact us, our ping might be delayed, so we may disconnect them by
261     accident.
262
263     .. _`#521`: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/521
264
265 ``ssh.port = (strports string, optional)``
266
267 ``ssh.authorized_keys_file = (filename, optional)``
268
269     This enables an SSH-based interactive Python shell, which can be used to
270     inspect the internal state of the node, for debugging. To cause the node
271     to accept SSH connections on port 8022 from the same keys as the rest of
272     your account, use::
273
274       [tub]
275       ssh.port = 8022
276       ssh.authorized_keys_file = ~/.ssh/authorized_keys
277
278 ``tempdir = (string, optional)``
279
280     This specifies a temporary directory for the web-API server to use, for
281     holding large files while they are being uploaded. If a web-API client
282     attempts to upload a 10GB file, this tempdir will need to have at least
283     10GB available for the upload to complete.
284
285     The default value is the ``tmp`` directory in the node's base directory
286     (i.e. ``BASEDIR/tmp``), but it can be placed elsewhere. This directory is
287     used for files that usually (on a Unix system) go into ``/tmp``. The
288     string will be interpreted relative to the node's base directory.
289
290 .. _webapi.rst: frontends/webapi.rst
291
292
293 Client Configuration
294 ====================
295
296 ``[client]``
297
298 ``introducer.furl = (FURL string, mandatory)``
299
300     This FURL tells the client how to connect to the introducer. Each
301     Tahoe-LAFS grid is defined by an introducer. The introducer's FURL is
302     created by the introducer node and written into its private base
303     directory when it starts, whereupon it should be published to everyone
304     who wishes to attach a client to that grid
305
306 ``helper.furl = (FURL string, optional)``
307
308     If provided, the node will attempt to connect to and use the given helper
309     for uploads. See helper.rst_ for details.
310
311 ``key_generator.furl = (FURL string, optional)``
312
313     If provided, the node will attempt to connect to and use the given
314     key-generator service, using RSA keys from the external process rather
315     than generating its own.
316
317 ``stats_gatherer.furl = (FURL string, optional)``
318
319     If provided, the node will connect to the given stats gatherer and
320     provide it with operational statistics.
321
322 ``shares.needed = (int, optional) aka "k", default 3``
323
324 ``shares.total = (int, optional) aka "N", N >= k, default 10``
325
326 ``shares.happy = (int, optional) 1 <= happy <= N, default 7``
327
328     These three values set the default encoding parameters. Each time a new
329     file is uploaded, erasure-coding is used to break the ciphertext into
330     separate shares. There will be ``N`` (i.e. ``shares.total``) shares
331     created, and the file will be recoverable if any ``k``
332     (i.e. ``shares.needed``) shares are retrieved. The default values are
333     3-of-10 (i.e.  ``shares.needed = 3``, ``shares.total = 10``). Setting
334     ``k`` to 1 is equivalent to simple replication (uploading ``N`` copies of
335     the file).
336
337     These values control the tradeoff between storage overhead and
338     reliability. To a first approximation, a 1MB file will use (1MB *
339     ``N``/``k``) of backend storage space (the actual value will be a bit
340     more, because of other forms of overhead). Up to ``N``-``k`` shares can
341     be lost before the file becomes unrecoverable.  So large ``N``/``k``
342     ratios are more reliable, and small ``N``/``k`` ratios use less disk
343     space. ``N`` cannot be larger than 256, because of the 8-bit
344     erasure-coding algorithm that Tahoe-LAFS uses. ``k`` can not be greater
345     than ``N``. See performance.rst_ for more details.
346
347     ``shares.happy`` allows you control over how well to "spread out" the
348     shares of an immutable file. For a successful upload, shares are
349     guaranteed to be initially placed on at least ``shares.happy`` distinct
350     servers, the correct functioning of any ``k`` of which is sufficient to
351     guarantee the availability of the uploaded file. This value should not be
352     larger than the number of servers on your grid.
353
354     A value of ``shares.happy`` <= ``k`` is allowed, but this is not
355     guaranteed to provide any redundancy if some servers fail or lose shares.
356     It may still provide redundancy in practice if ``N`` is greater than
357     the number of connected servers, because in that case there will typically
358     be more than one share on at least some storage nodes. However, since a
359     successful upload only guarantees that at least ``shares.happy`` shares
360     have been stored, the worst case is still that there is no redundancy.
361
362     (Mutable files use a different share placement algorithm that does not
363     currently consider this parameter.)
364
365 ``mutable.format = sdmf or mdmf``
366
367     This value tells Tahoe-LAFS what the default mutable file format should
368     be. If ``mutable.format=sdmf``, then newly created mutable files will be
369     in the old SDMF format. This is desirable for clients that operate on
370     grids where some peers run older versions of Tahoe-LAFS, as these older
371     versions cannot read the new MDMF mutable file format. If
372     ``mutable.format`` is ``mdmf``, then newly created mutable files will use
373     the new MDMF format, which supports efficient in-place modification and
374     streaming downloads. You can overwrite this value using a special
375     mutable-type parameter in the webapi. If you do not specify a value here,
376     Tahoe-LAFS will use SDMF for all newly-created mutable files.
377
378     Note that this parameter applies only to files, not to directories.
379     Mutable directories, which are stored in mutable files, are not
380     controlled by this parameter and will always use SDMF. We may revisit
381     this decision in future versions of Tahoe-LAFS.
382
383     See mutable.rst_ for details about mutable file formats.
384
385 .. _helper.rst: helper.rst
386 .. _performance.rst: performance.rst
387 .. _mutable.rst: specifications/mutable.rst
388
389 ``peers.preferred = (string, optional)``
390
391     This is an optional comma-separated list of Node IDs of servers that will
392     be tried first when selecting storage servers for reading or writing.
393
394     Servers should be identified here by their Node ID as it appears in the web
395     ui, underneath the server's nickname. For storage servers running tahoe
396     versions >=1.10 (if the introducer is also running tahoe >=1.10) this will
397     be a "Node Key" (which is prefixed with 'v0-'). For older nodes, it will be
398     a TubID instead. When a preferred server (and/or the introducer) is
399     upgraded to 1.10 or later, clients must adjust their configs accordingly.
400
401     Every node selected for upload, whether preferred or not, will still
402     receive the same number of shares (one, if there are ``N`` or more servers
403     accepting uploads). Preferred nodes are simply moved to the front of the
404     server selection lists computed for each file.
405
406     This is useful if a subset of your nodes have different availability or
407     connectivity characteristics than the rest of the grid. For instance, if
408     there are more than ``N`` servers on the grid, and ``K`` or more of them
409     are at a single physical location, it would make sense for clients at that
410     location to prefer their local servers so that they can maintain access to
411     all of their uploads without using the internet.
412
413
414 Frontend Configuration
415 ======================
416
417 The Tahoe client process can run a variety of frontend file-access protocols.
418 You will use these to create and retrieve files from the virtual filesystem.
419 Configuration details for each are documented in the following
420 protocol-specific guides:
421
422 HTTP
423
424     Tahoe runs a webserver by default on port 3456. This interface provides a
425     human-oriented "WUI", with pages to create, modify, and browse
426     directories and files, as well as a number of pages to check on the
427     status of your Tahoe node. It also provides a machine-oriented "WAPI",
428     with a REST-ful HTTP interface that can be used by other programs
429     (including the CLI tools). Please see webapi.rst_ for full details, and
430     the ``web.port`` and ``web.static`` config variables above.  The
431     `download-status.rst`_ document also describes a few WUI status pages.
432
433 CLI
434
435     The main "bin/tahoe" executable includes subcommands for manipulating the
436     filesystem, uploading/downloading files, and creating/running Tahoe
437     nodes. See CLI.rst_ for details.
438
439 SFTP, FTP
440
441     Tahoe can also run both SFTP and FTP servers, and map a username/password
442     pair to a top-level Tahoe directory. See FTP-and-SFTP.rst_ for
443     instructions on configuring these services, and the ``[sftpd]`` and
444     ``[ftpd]`` sections of ``tahoe.cfg``.
445
446 Drop-Upload
447
448     As of Tahoe-LAFS v1.9.0, a node running on Linux can be configured to
449     automatically upload files that are created or changed in a specified
450     local directory. See drop-upload.rst_ for details.
451
452 .. _download-status.rst: frontends/download-status.rst
453 .. _CLI.rst: frontends/CLI.rst
454 .. _FTP-and-SFTP.rst: frontends/FTP-and-SFTP.rst
455 .. _drop-upload.rst: frontends/drop-upload.rst
456
457
458 Storage Server Configuration
459 ============================
460
461 ``[storage]``
462
463 ``enabled = (boolean, optional)``
464
465     If this is ``True``, the node will run a storage server, offering space
466     to other clients. If it is ``False``, the node will not run a storage
467     server, meaning that no shares will be stored on this node. Use ``False``
468     for clients who do not wish to provide storage service. The default value
469     is ``True``.
470
471 ``readonly = (boolean, optional)``
472
473     If ``True``, the node will run a storage server but will not accept any
474     shares, making it effectively read-only. Use this for storage servers
475     that are being decommissioned: the ``storage/`` directory could be
476     mounted read-only, while shares are moved to other servers. Note that
477     this currently only affects immutable shares. Mutable shares (used for
478     directories) will be written and modified anyway. See ticket `#390`_ for
479     the current status of this bug. The default value is ``False``.
480
481 ``reserved_space = (str, optional)``
482
483     If provided, this value defines how much disk space is reserved: the
484     storage server will not accept any share that causes the amount of free
485     disk space to drop below this value. (The free space is measured by a
486     call to ``statvfs(2)`` on Unix, or ``GetDiskFreeSpaceEx`` on Windows, and
487     is the space available to the user account under which the storage server
488     runs.)
489
490     This string contains a number, with an optional case-insensitive scale
491     suffix, optionally followed by "B" or "iB". The supported scale suffixes
492     are "K", "M", "G", "T", "P" and "E", and a following "i" indicates to use
493     powers of 1024 rather than 1000. So "100MB", "100 M", "100000000B",
494     "100000000", and "100000kb" all mean the same thing. Likewise, "1MiB",
495     "1024KiB", "1024 Ki", and "1048576 B" all mean the same thing.
496
497     "``tahoe create-node``" generates a tahoe.cfg with
498     "``reserved_space=1G``", but you may wish to raise, lower, or remove the
499     reservation to suit your needs.
500
501 ``expire.enabled =``
502
503 ``expire.mode =``
504
505 ``expire.override_lease_duration =``
506
507 ``expire.cutoff_date =``
508
509 ``expire.immutable =``
510
511 ``expire.mutable =``
512
513     These settings control garbage collection, in which the server will
514     delete shares that no longer have an up-to-date lease on them. Please see
515     garbage-collection.rst_ for full details.
516
517 .. _#390: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/390
518 .. _garbage-collection.rst: garbage-collection.rst
519
520
521 Running A Helper
522 ================
523
524 A "helper" is a regular client node that also offers the "upload helper"
525 service.
526
527 ``[helper]``
528
529 ``enabled = (boolean, optional)``
530
531     If ``True``, the node will run a helper (see helper.rst_ for details).
532     The helper's contact FURL will be placed in ``private/helper.furl``, from
533     which it can be copied to any clients that wish to use it. Clearly nodes
534     should not both run a helper and attempt to use one: do not create
535     ``helper.furl`` and also define ``[helper]enabled`` in the same node.
536     The default is ``False``.
537
538
539 Running An Introducer
540 =====================
541
542 The introducer node uses a different ``.tac`` file (named
543 "``introducer.tac``"), and pays attention to the ``[node]`` section, but not
544 the others.
545
546 The Introducer node maintains some different state than regular client nodes.
547
548 ``BASEDIR/private/introducer.furl``
549
550   This is generated the first time the introducer node is started, and used
551   again on subsequent runs, to give the introduction service a persistent
552   long-term identity. This file should be published and copied into new
553   client nodes before they are started for the first time.
554
555
556 Other Files in BASEDIR
557 ======================
558
559 Some configuration is not kept in ``tahoe.cfg``, for the following reasons:
560
561 * it is generated by the node at startup, e.g. encryption keys. The node
562   never writes to ``tahoe.cfg``.
563 * it is generated by user action, e.g. the "``tahoe create-alias``" command.
564
565 In addition, non-configuration persistent state is kept in the node's base
566 directory, next to the configuration knobs.
567
568 This section describes these other files.
569
570 ``private/node.pem``
571
572   This contains an SSL private-key certificate. The node generates this the
573   first time it is started, and re-uses it on subsequent runs. This
574   certificate allows the node to have a cryptographically-strong identifier
575   (the Foolscap "TubID"), and to establish secure connections to other nodes.
576
577 ``storage/``
578
579   Nodes that host StorageServers will create this directory to hold shares of
580   files on behalf of other clients. There will be a directory underneath it
581   for each StorageIndex for which this node is holding shares. There is also
582   an "incoming" directory where partially-completed shares are held while
583   they are being received.
584
585 ``tahoe-client.tac``
586
587   This file defines the client, by constructing the actual Client instance
588   each time the node is started. It is used by the "``twistd``" daemonization
589   program (in the ``-y`` mode), which is run internally by the "``tahoe
590   start``" command. This file is created by the "``tahoe create-node``" or
591   "``tahoe create-client``" commands.
592
593 ``tahoe-introducer.tac``
594
595   This file is used to construct an introducer, and is created by the
596   "``tahoe create-introducer``" command.
597
598 ``tahoe-key-generator.tac``
599
600   This file is used to construct a key generator, and is created by the
601   "``tahoe create-key-gernerator``" command.
602
603 ``tahoe-stats-gatherer.tac``
604
605   This file is used to construct a statistics gatherer, and is created by the
606   "``tahoe create-stats-gatherer``" command.
607
608 ``private/control.furl``
609
610   This file contains a FURL that provides access to a control port on the
611   client node, from which files can be uploaded and downloaded. This file is
612   created with permissions that prevent anyone else from reading it (on
613   operating systems that support such a concept), to insure that only the
614   owner of the client node can use this feature. This port is intended for
615   debugging and testing use.
616
617 ``private/logport.furl``
618
619   This file contains a FURL that provides access to a 'log port' on the
620   client node, from which operational logs can be retrieved. Do not grant
621   logport access to strangers, because occasionally secret information may be
622   placed in the logs.
623
624 ``private/helper.furl``
625
626   If the node is running a helper (for use by other clients), its contact
627   FURL will be placed here. See helper.rst_ for more details.
628
629 ``private/root_dir.cap`` (optional)
630
631   The command-line tools will read a directory cap out of this file and use
632   it, if you don't specify a '--dir-cap' option or if you specify
633   '--dir-cap=root'.
634
635 ``private/convergence`` (automatically generated)
636
637   An added secret for encrypting immutable files. Everyone who has this same
638   string in their ``private/convergence`` file encrypts their immutable files
639   in the same way when uploading them. This causes identical files to
640   "converge" -- to share the same storage space since they have identical
641   ciphertext -- which conserves space and optimizes upload time, but it also
642   exposes file contents to the possibility of a brute-force attack by people
643   who know that string. In this attack, if the attacker can guess most of the
644   contents of a file, then they can use brute-force to learn the remaining
645   contents.
646
647   So the set of people who know your ``private/convergence`` string is the
648   set of people who converge their storage space with you when you and they
649   upload identical immutable files, and it is also the set of people who
650   could mount such an attack.
651
652   The content of the ``private/convergence`` file is a base-32 encoded
653   string.  If the file doesn't exist, then when the Tahoe-LAFS client starts
654   up it will generate a random 256-bit string and write the base-32 encoding
655   of this string into the file. If you want to converge your immutable files
656   with as many people as possible, put the empty string (so that
657   ``private/convergence`` is a zero-length file).
658
659
660 Other files
661 ===========
662
663 ``logs/``
664
665   Each Tahoe-LAFS node creates a directory to hold the log messages produced
666   as the node runs. These logfiles are created and rotated by the
667   "``twistd``" daemonization program, so ``logs/twistd.log`` will contain the
668   most recent messages, ``logs/twistd.log.1`` will contain the previous ones,
669   ``logs/twistd.log.2`` will be older still, and so on. ``twistd`` rotates
670   logfiles after they grow beyond 1MB in size. If the space consumed by
671   logfiles becomes troublesome, they should be pruned: a cron job to delete
672   all files that were created more than a month ago in this ``logs/``
673   directory should be sufficient.
674
675 ``my_nodeid``
676
677   this is written by all nodes after startup, and contains a base32-encoded
678   (i.e. human-readable) NodeID that identifies this specific node. This
679   NodeID is the same string that gets displayed on the web page (in the
680   "which peers am I connected to" list), and the shortened form (the first
681   few characters) is recorded in various log messages.
682
683 ``access.blacklist``
684
685   Gateway nodes may find it necessary to prohibit access to certain
686   files. The web-API has a facility to block access to filecaps by their
687   storage index, returning a 403 "Forbidden" error instead of the original
688   file. For more details, see the "Access Blacklist" section of
689   webapi.rst_.
690
691
692 Example
693 =======
694
695 The following is a sample ``tahoe.cfg`` file, containing values for some of
696 the keys described in the previous section. Note that this is not a
697 recommended configuration (most of these are not the default values), merely
698 a legal one.
699
700 ::
701
702   [node]
703   nickname = Bob's Tahoe-LAFS Node
704   tub.port = 34912
705   tub.location = 123.45.67.89:8098,44.55.66.77:8098
706   web.port = 3456
707   log_gatherer.furl = pb://soklj4y7eok5c3xkmjeqpw@192.168.69.247:44801/eqpwqtzm
708   timeout.keepalive = 240
709   timeout.disconnect = 1800
710   ssh.port = 8022
711   ssh.authorized_keys_file = ~/.ssh/authorized_keys
712   
713   [client]
714   introducer.furl = pb://ok45ssoklj4y7eok5c3xkmj@tahoe.example:44801/ii3uumo
715   helper.furl = pb://ggti5ssoklj4y7eok5c3xkmj@helper.tahoe.example:7054/kk8lhr
716   
717   [storage]
718   enabled = True
719   readonly = True
720   reserved_space = 10000000000
721   
722   [helper]
723   enabled = True
724
725
726 Old Configuration Files
727 =======================
728
729 Tahoe-LAFS releases before v1.3.0 had no ``tahoe.cfg`` file, and used
730 distinct files for each item. This is no longer supported and if you have
731 configuration in the old format you must manually convert it to the new
732 format for Tahoe-LAFS to detect it. See `historical/configuration.rst`_.
733
734 .. _historical/configuration.rst: historical/configuration.rst