Re: [mod-security-users] installation instructions wrong?
Brought to you by:
victorhora,
zimmerletw
|
From: Ivan R. <iv...@we...> - 2003-07-10 13:10:27
|
Maurice Volaski wrote: > I tried installing mod_security as part of apachetoolbox > (www.apachetoolbox.com). I ran into problems with both of these lines > > --activate-module=src/modules/extra/mod_security > --enable-module=security > > I couldn't get either line to work as is. What I ended up doing was > > --enable-module=/path/to/mod_security.c > --add-module =/path/to/mod_security.c > > The main problem seems the module name must be spelled out entirely: > "mod_security.c". > > There was still a complaint from the Configure program about one of the > files not being found, but it nevertheless did work. I believe that there are several ways to add a module to Apache 1. I haven't tried ApacheToolbox yet but I plan to examine it soon. If you want to use --add-module then it alone is sufficient: --add-module=/path/to/mod_security.c it will add and activate the module at the same time. The approach described in the manual works for me (provided you use the two options in that order). I am not really sure what could be the problem in your setup. ... Nevertheless, the --add-module approach is simpler than the approach described in the manual. I will update the manual to use it instead. Bye, Ivan |