Problem Installing SuExec on Apache2
i've installed Apache2 with PHP 4 support and now i want to securise my CGI using suexec solution ,so i downloaded the relative docs of suexec installation and i made this :
# service httpd stop
# ./configure --prefix=/usr/local/httpd --enable-deflate --enable-so --enable-mods-shared=all --enable-suexec --with-suexec-bin=/usr/local/httpd/bin/ --with-suexec-caller=nobody --with-suexec-docroot=/usr/local/httpd/htdocs/ --with-suexec-logfile=/usr/local/httpd/logs/suexec_log
# make
# make install
# ./configure --prefix=/usr/local/httpd --enable-deflate --enable-so --enable-mods-shared=all --enable-suexec --with-suexec-bin=/usr/local/httpd/bin/ --with-suexec-caller=nobody --with-suexec-docroot=/usr/local/httpd/htdocs/ --with-suexec-logfile=/usr/local/httpd/logs/suexec_log
# make
# make install
All is done and no errors given
so i test if suexec is on by typing :
# ls -alF /usr/local/httpd/bin/suexec
-rwsr-xr-x 1 root root 48903 mar 24 20:21 /usr/local/httpd/bin/suexec*
-rwsr-xr-x 1 root root 48903 mar 24 20:21 /usr/local/httpd/bin/suexec*
but in the doc of httpd ,it says that i must have a [notice] in the error log of apache saying that suexec was successfully charged :
# cat /usr/local/httpd/logs/error_log
[Wed Mar 24 20:21:26 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Mar 24 20:21:26 2004] [notice] Digest: done
[Wed Mar 24 20:21:27 2004] [notice] Apache/2.0.48 (Unix) DAV/2 PHP/4.3.4 configured -- resuming normal operations
[Wed Mar 24 20:21:26 2004] [notice] Digest: generating secret for digest authentication ...
[Wed Mar 24 20:21:26 2004] [notice] Digest: done
[Wed Mar 24 20:21:27 2004] [notice] Apache/2.0.48 (Unix) DAV/2 PHP/4.3.4 configured -- resuming normal operations
another test ,here's the built in modules of my apache :
# /usr/local/httpd/bin/apachectl -l
Compiled in modules:
core.c
prefork.c
http_core.c
mod_so.c
Compiled in modules:
core.c
prefork.c
http_core.c
mod_so.c

anyone got a solution for me ?
thanks anyway