diff options
author | Martin Kraemer <martin@apache.org> | 1998-07-30 16:42:47 +0000 |
---|---|---|
committer | Martin Kraemer <martin@apache.org> | 1998-07-30 16:42:47 +0000 |
commit | b73da07b6f9fbd29036ed7d7f878f0a89b618a79 (patch) | |
tree | 7a0aa1d4482725d917751cbdb6c87a3e066c5275 /docs/manual/suexec.html | |
parent | 70f15d6e86d58bf5ab918a2729e376cf9751f24a (diff) | |
download | httpd-b73da07b6f9fbd29036ed7d7f878f0a89b618a79.tar.gz |
Corrected the path to src/include/httpd.h, as suggested by
Brian Reichert <reichert@numachi.com>
PR: 2359
Submitted by: Brian Reichert <reichert@numachi.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81836 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/suexec.html')
-rw-r--r-- | docs/manual/suexec.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/manual/suexec.html b/docs/manual/suexec.html index c66e5682b0..09aede8b8a 100644 --- a/docs/manual/suexec.html +++ b/docs/manual/suexec.html @@ -389,18 +389,22 @@ location. </P> <P ALIGN="LEFT"> -<EM>From src/httpd.h</EM> +<EM>From src/include/httpd.h</EM> <PRE> - /* The path to the suEXEC wrapper */ - #define SUEXEC_BIN "/usr/local/apache/sbin/suexec" + /* The path to the suExec wrapper, can be overridden in Configuration */ + #ifndef SUEXEC_BIN + #define SUEXEC_BIN HTTPD_ROOT "/sbin/suexec" + #endif </PRE> </P> <P ALIGN="LEFT"> If your installation requires location of the wrapper program in a different -directory, edit src/httpd.h and recompile your Apache server. -See <A HREF="install.html">Compiling and Installing Apache</A> for more -info on this process. +directory, either add <CODE>-DSUEXEC_BIN=\"<EM></your/path/to/suexec></EM>\"</CODE> +to your CFLAGS (or edit src/include/httpd.h) and recompile your Apache server. +See <A HREF="install.html">Compiling and Installing Apache</A> +(and the <SAMP>INSTALL</SAMP> file in the source distribution) +for more info on this process. </P> <P ALIGN="LEFT"> |