]> gitweb.michael.orlitzky.com - dead/htsn.git/blob - doc/htsnrc.example
90212cdfa4d39ef6090a4d0bc09f69c5eef24b22
[dead/htsn.git] / doc / htsnrc.example
1 # Example configuration file for htsn. For this to take effect, you
2 # would need to place it in either the user or global configuration
3 # directories.
4 #
5 # For a user, that's either $HOME/.htsnrc on Unix or
6 # %APPDATA%\.htsnrc (e.g. C:\Users\<username>\Application
7 # Data\.htsnrc) on Windows.
8 #
9 # The global configuration directory is determined by Cabal. The
10 # "sysconfdir" parameter during the "configure" step will be used. On
11 # Unix, it's probably /etc, and this file will need to go in
12 # /etc/htsnrc.
13
14 # Run in the background as a daemon?
15 #
16 # Default: false
17 #
18 # daemonize = true
19
20
21 # A list of hostnames that supply the feed. You probably don't need to
22 # change this, but you can.
23 #
24 # Default: ["feed1.sportsnetwork.com",
25 # "feed2.sportsnetwork.com",
26 # "feed3.sportsnetwork.com"]
27 #
28 # feed_hosts = [ "hostname1", "hostname2", ... ]
29
30
31 # If you specify a file path here, logs will be written to it
32 # (possibly in addition to syslog). Can be either a relative or
33 # absolute path. It will not be auto-rotated; use something like
34 # logrotate for that.
35 #
36 # Default: none
37 #
38 # log_file = "/var/log/htsn/htsn.log"
39
40
41 # How verbose should the logs be? Valid levels are,
42 #
43 # "INFO", "WARNING", "ERROR"
44 #
45 # (there are others, but we don't emit them.)
46 #
47 # Default: "INFO"
48 #
49 # log_level = "WARNING"
50
51
52 # By default, XML files will be written to the current working
53 # directory. Often this is not desirable, and you would rather save
54 # them to a specific location. Specify it here.
55 #
56 # Default: "."
57 #
58 # output_directory = "/var/lib/htsn"
59
60
61 # The password associated with your TSN username.
62 #
63 # Default: none (required)
64 #
65 # password = "whatever"
66
67
68 # (Daemon mode only) Create a PID file in the given location. This is
69 # used by the init system on Unix to keep track of the running
70 # daemon. Its parent directory must be writable by the user/group that
71 # we will run as!
72 #
73 # Default: /run/htsn/htsn.pid
74 #
75 # pidfile = /var/run/htsn/htsn.pid
76
77
78 # (Daemon mode only) Run htsn as the specified system grup. The PID
79 # file is written before privileges are dropped, so the only
80 # privileges needed by htsn are those necessary to write the XML files
81 # and (optionally) the log file.
82 #
83 # Default: the current group
84 #
85 # run_as_group = "htsn"
86
87
88 # (Daemon mode only) Run htsn as the specified system user. The PID
89 # file is written before privileges are dropped, so the only
90 # privileges needed by htsn are those necessary to write the XML files
91 # and (optionally) the log file.
92 #
93 # Default: the current user
94 #
95 # run_as_user = "htsn"
96
97 # Do you want to log to syslog? On Windows this will attempt to
98 # communicate (over UDP) with a syslog daemon on localhost, which will
99 # most likely not work.
100 #
101 # Default: false
102 #
103 # syslog = true
104
105
106 # The username used to connect to the feed.
107 #
108 # Default: none (required)
109 #
110 # username = "whoever"