X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=doc%2Fhtsnrc.example;h=2158504374e5ea5885106009311b1b18db94316c;hb=4e53c500d87df2dbe1413d47562786fe4cc88f2a;hp=ed47402da96aea2f5340c6c7897a57ad62f5c687;hpb=3fbc7d861d1f95513151010cd0f2d620befc2870;p=dead%2Fhtsn.git diff --git a/doc/htsnrc.example b/doc/htsnrc.example index ed47402..2158504 100644 --- a/doc/htsnrc.example +++ b/doc/htsnrc.example @@ -1,6 +1,7 @@ # Example configuration file for htsn. For this to take effect, you -# would need to place it in either /etc/htsnrc or $HOME/.htsnrc. The -# latter overrides the former. +# would need to place it in $HOME/.htsnrc. On Windows, it probably +# needs to go in %APPDATA%, or C:\Users\\Application Data. + # The username used to connect to the feed. # @@ -8,24 +9,58 @@ # # username = "whoever" -# The password used to connect to the feed. + +# The password associated with your TSN username. # # Default: none (required) # # password = "whatever" -# By default, htsn will output the XML files to the current working + +# By default, XML files will be written to the current working # directory. Often this is not desirable, and you would rather save # them to a specific location. Specify it here. # -# Default: "." (here) +# Default: "." # # output-directory = "/var/lib/htsn" -# A list of hostnames that supply the feed. + +# A list of hostnames that supply the feed. You probably don't need to +# change this, but you can. # # Default: ["feed1.sportsnetwork.com", # "feed2.sportsnetwork.com", # "feed3.sportsnetwork.com"] # # feed-hosts = [ "hostname1", "hostname2", ... ] + + +# Do you want to log to syslog? On Windows this will attempt to +# communicate (over UDP) with a syslog daemon on localhost, which will +# most likely not work. +# +# Default: False +# +# syslog = True + + +# If you specify a file path here, logs will be written to it +# (possibly in addition to syslog). Can be either a relative or +# absolute path. It will not be auto-rotated; use something like +# logrotate for that. +# +# Default: none +# +# log_file = /var/log/htsn/htsn.log + + +# How verbose should the logs be? Valid levels are, +# +# "INFO", "WARNING", "ERROR" +# +# (there are others, but we don't emit them.) +# +# Default: "INFO" +# +# log_level = "WARNING"