Ticket #127: transmission.conf

File transmission.conf, 1.3 KB (added by oleo, 3 years ago)

config for transmission_watchdog and CGI interface

Line 
1
2#   Configuration
3#   NOTE: no spaces around the = sign
4#   the config will be sourced (eg. . transmission.conf)
5
6SOURCE=/tmp/harddisk/torrent/source
7WORK=/tmp/harddisk/torrent/work
8TARGET=/tmp/harddisk/torrent/target
9MAILTO=torrent@somedomain.com
10MAILFROM=torrent@somedomain.com
11MAILOPT="-smail.somedomain.com -f"
12USER=admin
13GROUP=root
14DATE_FORMAT="%d %h %H:%M"
15
16# Transmission daemon variables
17PIDFILE=/opt/var/run/transmission.pid
18ACTIVE=/tmp/harddisk/torrent/active-torrents.txt
19HOME=/tmp/harddisk/torrent
20WATCHDOG=300
21LISTENING_PORT=65534
22# set SPEED in kB/s or -1 for unlimited
23UPLOAD_SPEED=-1
24DOWNLOAD_SPEED=-1
25#UPLOAD_SPEED=41
26#DOWNLOAD_SPEED=180
27SYSLOG=/opt/var/log/messages
28
29#time between logs
30LOG_TIME=59
31
32# Seed torrent after completition (YES or NO)
33AUTOSEED="YES"
34
35# Creating graphical log of transfer with gnuplot
36# can be very site specific issue. See transmission.cgi
37# how this variables are used.
38# Alternative tool for graphing could be
39# http://oss.oetiker.ch/rrdtool
40GNUPLOT=/opt/bin/gnuplot
41GNUPLOT_COMMAND=${WORK}/transfer.gnuplot
42GNUPLOT_DATA=${WORK}/transfer.data
43GNUPLOT_OUTPUT=/opt/share/www/transfer.png
44HTTP_IMG_LOCATION=../transfer.png
45
46#Colors for command line. # comment out if not needed
47GREEN="\033[32;1m"
48#NC="\033[0m"
49#BACK_UP="\033[1K\033[0G"
50NORMAL="\033[0m"
51WARN="\033[33;1m"
52BAD="\033[31;1m"
53BOLD="\033[1m"
54GOOD="\033[32;1m"
55