APACHE - Disable mod security for a specific virtualhost

From wiki.morphey.org

Jump to: navigation, search

To disable the mod_security in a determined virtualhost, this directive can be inserted in the httpd.conf of Apache:

 
 
<VirtualHost *>
ServerAlias ...
 <IfModule mod_security.c>
 SecFilterEngine Off
 SecFilterCheckURLEncoding Off
 </IfModule>
</VirtualHost>
 
Personal tools