CONFIGURE YOUR WEBSERVER
=========================
Use the following Hiawatha configuration for this website.

UrlToolkit {
	ToolkitID = banshee
	RequestURI isfile Return
	Match ^/(css|files|images|js)/ Return
	Match ^/(favicon.ico|robots.txt|sitemap.xml)$ Return
	Match .*\?(.*) Rewrite /index.php?$1
	Match .* Rewrite /index.php
}

VirtualHost {
	Hostname = monitor.domain.com
	WebsiteRoot = /var/www/monitor/public
	AccessLogfile = /var/www/monitor/logfiles/access.log
	ErrorLogfile = /var/www/monitor/logfiles/error.log
	StartFile = index.php
	ExecuteCGI = yes
#	UseFastCGI = PHP5 # Use if you use PHP as a FastCGI daemon
	TimeForCGI = 15
	UseToolkit = banshee
}


CONFIGURE PHP
==============
Use the following PHP settings:
	cgi.rfc2616_headers = 1
	magic_quotes_gpc = Off
	register_globals = Off


CONFIGURE YOUR DATABASE
========================
Change the database settings in 'settings/website.conf' and run the script 'database/setup_database'.

The database already contains the following user:
	admin:monitor


CONFIGURE CRON DAEMON
======================
Use the cron daemon to fetch the information from the webservers:

# Crontab
SHELL=/bin/sh
MAILTO=<account name of which you can read e-mail>
*/5 * * * * /path/to/monitor/website/databases/fetch_webserver_logs
3 1 * * *   /path/to/monitor/website/databases/delete_old_logs
