
Originally Posted by
sparek-3
In the VirtualHost entry for this VirtualHost add:
<IfModule mod_security.c>
SecFilterRemvoe 300015
</IfModule>
Alternatively you can get even more specific by using a Location block:
<IfModule mod_security.c>
<Location /somepath>
SecFilterRemvoe 300015
</Location>
</IfModule>
Notice that the ID of the mod_security rule you have is 300015 so you are wanting to remove that from the list for this specific VirtualHost. Restart Apache when you are done.
Thank you sparek-3
but I got the same error, I know that rule is correct, because I see the correct sintax in mod_security page but maybe I'm have misconfigurated anything...
bellow is my code:
Code:
<IfModule mod_security.c>
<Location /home/<user>/public_html/helpdesk/admin/ >
SecFilterRemove 300015
</Location>
</IfModule>
I already tried this variations:
Code:
1.
<Location /home/<user>/public_html/helpdesk/admin>
2.
<Directory /home/<user>/public_html/helpdesk/admin>
3.
<Location domain.com.br/helpdesk/admin >
Well... and now?