The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
###############################################################################
##                                                                           ##
##     logprocess.conf - sample configuration file for the Log Validator     ##
##                                                                           ##
##                                                                           ##
##               Written by olivier Thereaux for W3C                         ##
##                                                                           ##
##     most of the directives can be taken from the Apache configuration     ##
##                  and have the same meaning and syntax                     ##
##                                                                           ##
###############################################################################
# $Id: logprocess.conf,v 1.17 2004/08/10 05:20:33 ot Exp $


#####################################
##                                 ##
##   General server configuration  ##
##                                 ##
#####################################
##
##     Configuration variables about the Web server being tested
##      Used by the LogValidator to find and analyse log files
##      NOTE: [apache] means you should safely be able to copy 
## the equivalent line from the configuration of an Apache Web server

##  [apache] ServerAdmin : e-mail address to send the reports  ##
##
ServerAdmin me@my.domain

##  MailFrom : From: address for e-mail output  ##
##
## Unless the relevant option is specified when running the LogValidator,
## the mail output will use ServerAdmin (see above) as From: and To:
## This option allows you to override the From: parameter
## DEFAULT  = ServerAdmin
# MailFrom: logvalidator@example.org

## Title : a more useful Subject: for the Mail output and <title> for HTML Output ##
##
## Tell the mail/HTML output what this config is all about
## and make them use a better subject than the vanilla "LogValidator results"
## DEFAULT = Logvalidator results
# Title = Logvalidator results

##  [apache] DocumentRoot : where the files are located  ## 
##
## For some log formats, it is necessary to know where the actual files
## reside on the server
DocumentRoot /var/www/

##  [apache] ServerName : full address for the web server  ##
##
## should be of the form host.domain
## NOTE: no need to prepend http://
ServerName my.web.site

##  [apache] CustomLog : log file and format  ##
##
## Add as many entries as you like. The Log Validator will process all log files listed below
## formats: see http://httpd.apache.org/docs/mod/mod_log_config.html
#  NOTE: only the following formats are currently supported:
#                    common, combined, w3, full, plain (list of addresses)
CustomLog /var/log/apache/access.log combined
# CustomLog /var/log/apache/access.log.1 combined
# CustomLog /home/me/path/to/list plain

## [apache] DirectoryIndex : document equivalent to "/"
##
## See http://httpd.apache.org/docs/mod/mod_dir.html#directoryindex
## Used by the validator to compute the "canonical" URLs for Documents
## DEFAULT = index.html index.htm index
# DirectoryIndex index.html index.htm index Overview Overview.html Overview.xhtml


####################################
##                                ##
##  General Log Validator config  ##
##                                ##
####################################


##  EntriesPerLogFile : How many log entries do we process per log file? ##
##
## If log files are very big, the Log Validator will only process the first n entries (lines)
## This parameter can be sent to any number. 
## NOTE: Set it to 0 for "no limit" (not recommended)
## DEFAULT = 100000
# EntriesPerLogfile 5000

## MaxInvalid : how many "invalid" documents to find before exiting
##
## Most Log Validator processing modules will find "invalid" documents (the definition varies)
## This is the general configuration variable for how many documents processing
##   modules should look for in the global list of documents before exiting
## NOTE: this can be fine-tuned on a per-module basis by setting this variable
##  In the config file for each module
## NOTE: See also MaxDocuments
## NOTE: Set it to 0 for "no limit"
## DEFAULT = 10
# MaxInvalid 20

## MaxDocuments : how many documents to process before exiting [NEW version 0.3]
##
## All Log Validator processing modules will stop after processing this number of documents
##   Even if the limit set for the number of invalid documents to find (MaxInvalid) is not reached
## For purely statistical modules, this will be the only limit
## 0 is equivalent to infinite (i.e process all the entries in the log as defined by EntriesPerLogfile)
## NOTE: this can be fine-tuned by setting the same variable for each module
## NOTE: See also MaxDocuments
## NOTE: Set it to 0 for "no limit"
## DEFAULT =  0
#MaxDocuments 100


## ExcludeAreas : areas that should not be processed ##
## space separated list of areas. 
## regexp-like syntax (e.g . is understood as "any character") No need to escape "/"
## DEFAULT = None
## NOTE: can also be set up on a per-module basis
## NOTE: use AuthorizedExtensions to allow/ignore file extensions
# ExcludeAreas  test/ignore* favicon\.ico /rootarea


## UseValidationModule : chooses between available modules to process the logs
##
## Below is the list of modules shipped with the Log Validator
## comment the lines for the ones you do not want to use
## or add your own (see http://www.w3.org/QA/Tools/LogValidator/Manual-Modules to create new modules)
UseValidationModule W3C::LogValidator::Basic
UseValidationModule W3C::LogValidator::SurveyEngine
UseValidationModule W3C::LogValidator::HTMLValidator
UseValidationModule W3C::LogValidator::CSSValidator


#####################################
##                                 ##
##  Module-Specific configuration  ##
##                                 ##
#####################################
##
## Below are specific configuration directives for some of the modules

<Module W3C::LogValidator::Basic>                                                                                                                              
## MaxDocuments : how many documents to process before exiting [NEW version 0.3]
## Setting a specific value adapted to the use of the Basic Module
## Change it at your convenience
## if set to 0, the module will output the full list of documents
MaxDocuments 100

## ExcludeAreas : areas that should not be processed ##
## NOTE: see equivalent section in general config for more info

</Module>

<Module W3C::LogValidator::HTMLValidator>
## MaxDocuments and MaxInvalid 
## 
## how many documents should be processed and/or how many invalid documents need to be found
##   before this particular module stops processing the longs
## DEFAULT = global values of MaxInValid and MaxDocuments
## 
## MaxInvalid 5
## MaxDocuments 0

## ExcludeAreas : areas that should not be processed ##
## NOTE: see equivalent section in general config for more info

## Other variables you may change *WARNING* at your own risks *WARNING*
## NOTE: default should be fine, don't change this unless you know what you're doing
## Below are the default values, uncomment and modify if necessary
# ValidatorMethod HEAD
# ValidatorHost validator.w3.org
# ValidatorPort 80
# ValidatorString /check?uri=
# ValidatorPostString \;output=xml
# AuthorizedExtensions .html .xhtml .phtml .htm .shtml .php .svg .xml /
</Module>

<Module W3C::LogValidator::SurveyEngine>
## MaxDocuments and MaxInvalid 
## 
## how many documents should be processed and/or how many invalid documents need to be found
##   before this particular module stops processing the longs
## DEFAULT = global values of MaxInValid and MaxDocuments
## 
## MaxInvalid 5
MaxDocuments 100

## ExcludeAreas : areas that should not be processed ##
## NOTE: see equivalent section in general config for more info


## Other variables you may change *WARNING* at your own risks *WARNING*
## NOTE: default should be fine, don't change this unless you know what you're doing
## Below are the default values, uncomment and modify if necessary
# ValidatorMethod HEAD
# ValidatorHost validator.w3.org
# ValidatorPort 80
# ValidatorString /check?uri=
# ValidatorPostString \;output=xml
# AuthorizedExtensions .html .xhtml .phtml .htm .shtml .php .svg .xml /
</Module>


<Module W3C::LogValidator::CSSValidator>
## MaxDocuments and MaxInvalid 
## 
## how many documents should be processed and/or how many invalid documents need to be found
##   before this particular module stops processing the longs
## DEFAULT = global values of MaxInValid and MaxDocuments
## 
## MaxInvalid 5
## MaxDocuments 0

## ExcludeAreas : areas that should not be processed ##
## NOTE: see equivalent section in general config for more info


## verbose: amount of output when running Log Validator
##
## verbosity is set up for the whole Log Validator frm the command line
##   but if you want a specific verbosity for a specific module, override the setting here
## DEFAULT = global value of verbose
# verbose 0

## other variables you may change *WARNING* at your own risks *WARNING*
# AuthorizedExtensions : what kind of extensions the module should claim responsibility for
# for this module, you may want to choose either only CSS or any kind of document that can have embedded CSS
# default is the former
#AuthorizedExtensions .css 
#AuthorizedExtensions .html .xhtml .phtml .htm .css .svg /
</Module>