11 Jan
2007
11 Jan
'07
6:14 p.m.
I need some help in my config file using regular expressions. This filter is for http requests from Apache. I am trying to get this filter to catch the following two types of messages. httpd[....] and /websites/abc/test logger: and test.abc.com I have tried the following. filter fd_httpd_test.abc.com { match("httpd[\[0-9]+\]") and match("/websites/abc/test") or match("logger:") and match("test.abc.com"); }; I also tried this. filter fd_httpd_test.abc.com { match("httpd[\[0-9]+\]*/websites/abc/test") or match("logger:*test.abc.com"); }; Let me know. Thanks. Phusion