1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
.TH taskd 5 2015-05-10 "${PACKAGE_STRING}" "User Manuals"
.SH NAME
taskdrc \- Configuration details for the taskd(1) server
.SH CONFIGURATION VARIABLES
Valid variable names and their default values are:
.TP
.B ca.cert
Fully qualified path to the CA certificate. Optional.
.TP
.B ciphers
List of GnuTLS ciphers to use. Default is "NORMAL". See your GnuTLS
documentation for full details.
.TP
.B confirmation=on
Determines whether certain commands are confirmed. Defaults to on.
.TP
.B client.cert
Fully qualified path of the client cert. This is used by the 'client' command.
.TP
.B debug=off
Logs debugging information.
.TP
.B debug.tls=0
GnuTLS log level, an integer from 0 to 9, where 0 means no logging, and 9
means sensitive data leaks. Caution!
.TP
.B extensions=<path>
Fully qualified path of the Taskserver extension scripts. Currently there are
none.
.TP
.B family=IPv4
Specifies the address family to use. Can be 'IPv4', 'IPv6', or not specified
which means 'any'. Default is no value.
.TP
.B ip.log=on
Logs the IP addresses of incoming requests.
.TP
.B log=/tmp/taskd.log
Fully-qualified path name to the Taskserver log file. Alternately, specifying
the value '-' will cause all logging to go to STDOUT. This does not apply when
the server is run as a daemon.
.TP
.B pid.file=/tmp/taskd.pid
Fully-qualified path name to the Taskserver PID file. This is used by
the 'taskdctl' script to start/stop the daemon.
.TP
.B queue.size=10
Size of the connection backlog. See 'man listen'.
.TP
.B request.limit=1048576
Size limit of incoming requests, in bytes. Use a value of zero '0' to indicate
no size limit.
.TP
.B server=localhost:53589
The address (IPv4, IPv6 or DNS) of the Taskserver, followed by a colon and the
port number.
.TP
.B server.cert
Fully qualified path to the server certificate.
.TP
.B server.crl
Fully qualified path to the server certificate revocation list.
.TP
.B server.key
Fully qualified path to the server key.
.TP
.B trust
Trust level of the server, which determines how the client certificates are
verified. If the value is 'allow all' then no verification is performed.
Defaults to 'strict'.
Note that sending the HUP signal to the Taskserver causes a configuration
file reload before the next request is handled.
.SH ENVIRONMENT VARIABLES
Environment variables provide values that would otherwise be required at the
command line.
.TP
.B TASKDDATA=<root>
Most command require either '\-\-data <root>' or this environment variable. If
both are provided, the command line overrides the environment.
.SH "CREDITS & COPYRIGHTS"
Copyright (C) 2012 \- 2015, Göteborg Bit Factory.
Taskserver is distributed under the MIT license. See
http://www.opensource.org/licenses/mit-license.php for more information.
.SH SEE ALSO
.BR taskd(1), taskdctl(1)
For more information regarding Taskserver, see the following:
.TP
The official site at
<http://taskwarrior.org>
.TP
The official code repository at
<https://git.tasktools.org/scm/tm/taskd.git>
.TP
You can contact the project by emailing
<support@taskwarrior.org>
.SH REPORTING BUGS
.TP
Bugs in Taskserver may be reported to the issue-tracker at
<http://taskwarrior.org
|