File grc.conf-apache.patch of Package grc
diff -p1 -urN grc-1.4.orig/conf.apache grc-1.4/conf.apache
--- /dev/null 1970-01-01 01:00:00.000000000 +0100
+++ conf.apache 2012-02-22 16:35:40.000000000 +0100
@@ -0,0 +1,45 @@
+# Configuration suitable to display Apache/nginx access logs
+# Based on conf.proftpd by Pavol Domin
+# Crafted by Marcello Barnaba <vjt@openssl.it>
+#
+# Source: https://gist.github.com/1885569
+
+# ip number
+regexp=^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}
+colours=bold magenta
+count=once
+-
+# everything in brackets
+regexp=\[.+?\]
+colours=cyan
+count=once
+-
+# everything in ""
+regexp=\".+?\"
+colours=blue
+count=more
+-
+# HTTP Method
+regexp=(?:HEAD|GET|POST|PUT|DELETE)
+colours=bold blue
+count=once
+-
+# HTTP Path
+regexp=\s/[^\s]+
+colours=bold green
+count=once
+-
+# HTTP OK Status codes - from http://httpcats.herokuapp.com/ ;-)
+regexp=\s(?:10[01]|20[02467]|30[0123457])
+colours=green
+count=once
+-
+# HTTP Error status code - from the same source as above
+regexp=\s(?:40[1-9]|41[1-8]|42[2-9]|431|444|450|50[2-9]|599)
+colours=bold red
+count=once
+-
+# Request byte size
+regexp=\s(?!(?:10[01]|20[02467]|30[0123457])|(?:40[1-9]|41[1-8]|42[2-9]|431|444|450|50[2-9]|599))\d+
+colours=yellow
+count=once