* released 1.1.21
* changed the debug output format so that it now includes the session unique
  ID followed by the instance name at the beginning of each line.
* in debug mode, accept now shows the client's IP and port.
* added one 3 small debugging scripts to search and pretty print debug output
* changed the default health check request to "OPTIONS /" instead of
  "OPTIONS *" since not all servers implement the later one.
* "option httpchk" now accepts an optional parameter allowing the user to
  specify and URI other than '/' during health-checks.
* made Makefile more robust to pcre-config errors
* added 3 new pretty-print scripts : debug2ansi, debug2html and debugfind
* upgraded Formilux package to haproxy-1.1.21-flx.1.pkg
* removed the now obsolete haproxy2html.sh
diff --git a/examples/haproxy.cfg b/examples/haproxy.cfg
index 3b6f825..b6d877f 100644
--- a/examples/haproxy.cfg
+++ b/examples/haproxy.cfg
@@ -70,7 +70,7 @@
 	mode	http
 	option	httplog
 	option	dontlognull
-	option	httpchk
+	option	httpchk /index.html
 	option	persist
 	balance	roundrobin
 	server	inst1 192.168.114.56:80 check inter 2000 fall 3
@@ -87,7 +87,7 @@
 	mode	http
 	option	httplog
 	option	dontlognull
-	option	httpchk
+	option	httpchk *
 	balance	roundrobin
 	cookie	SERVERID insert indirect nocache
 	server	inst1 192.168.114.56:80 cookie server01 check inter 2000 fall 3