How to disable modsecurity to only one account?

rustelekom

Well-Known Member
PartnerNOC
Nov 13, 2003
290
0
166
moscow
into httpd.conf (between virtual host directivies) insert following:

<IfModule mod_security.c>
SecFilterEngine On
SecFilterScanPOST On
SecFilterDefaultAction "log,allow"
</IfModule>

that will disable blocking requests but will log it. or you may change
SecFilterEngine On
to
SecFilterEngine Off

and that will disable mod_security for user at all.

you also may insert above to .htaccess (if that allowed by your .htaccess rules) in user public_html folder.