# Edit this file # Your site URL SITE_URL = "http://torrez.us" # Location of the log file to analyze # This file can be on your filesystem or accessible via HTTP on a server LOG_FILE_URL = "/path/to/my/apache/access/log" # or # LOG_FILE_URL = "ftp://user:password@ftp.domain.com/path/to/log" # Set it True if your log file is compressed with gzip. It will be # decompressed automatically. LOG_GZIP = False # Number of "latest" accesses to show in the stats page NUMBER_OF_ACCESSES = 300 # Template file name TEMPLATE = "template.html" # this is the regular expression for Apache combined log files LOG_FORMAT = '(?P[\w\.\-]+) - - \[(?P[^\]]+)\] "(?P[^"]+)" (?P[0-9]+) (?P[\-0-9]+) "(?P[^"]+)" "(?P[^"]+)"\n$' # this is the regular expression for pingable URLs in your blog PINGABLE = 'http://torrez.us/archives/\d+/\d+/\d+/\d+/?' TECHNORATI_KEY = '' # Date format in the log. # This shoud be '12/Aug/2005:18:40:56' # If your is different change it DATE_FORMAT = '%d/%b/%Y:%H:%M:%S'