summaryrefslogtreecommitdiff
path: root/templates/vhosts/static
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2010-01-04 15:26:24 -0500
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2010-01-04 15:26:24 -0500
commit550fa2b0a405e9bda6e2d82a1e423396a7ffdaa8 (patch)
tree4cb0a030bf9f837b9621af2b671539b6f2133e90 /templates/vhosts/static
parentdb29f34f58c35f487eaf04e54d26fe2a9405e601 (diff)
add $mod_security_relevantonly flag, enabled by default, logs only on suspicious requests, set to 'false' to log all requests (as before)
Diffstat (limited to 'templates/vhosts/static')
-rw-r--r--templates/vhosts/static/static.erb8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/vhosts/static/static.erb b/templates/vhosts/static/static.erb
index a7aa374..05354d6 100644
--- a/templates/vhosts/static/static.erb
+++ b/templates/vhosts/static/static.erb
@@ -39,7 +39,11 @@
<IfModule mod_security2.c>
<%- if mod_security.to_s == 'true' then -%>
SecRuleEngine On
+ <%- if mod_security_relevantonly.to_s == 'true' then -%>
+ SecAuditEngine RelevantOnly
+ <%- else -%>
SecAuditEngine On
+ <%- end -%>
<%- else -%>
SecRuleEngine Off
SecAuditEngine Off
@@ -94,7 +98,11 @@
<IfModule mod_security2.c>
<%- if mod_security.to_s == 'true' then -%>
SecRuleEngine On
+ <%- if mod_security_relevantonly.to_s == 'true' then -%>
+ SecAuditEngine RelevantOnly
+ <%- else -%>
SecAuditEngine On
+ <%- end -%>
<%- else -%>
SecRuleEngine Off
SecAuditEngine Off