diff options
author | Ryan Bloom <rbb@apache.org> | 2002-09-28 01:53:04 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2002-09-28 01:53:04 +0200 |
commit | 4139630b70d08a15f3407d2624167124c26b31fa (patch) | |
tree | 654d71ed45138e89dadb4ab73f69a1ed672c7f25 /support/suexec.h | |
parent | the recent change to fully-qualify exports.c to fix the build with (diff) | |
download | apache2-4139630b70d08a15f3407d2624167124c26b31fa.tar.xz apache2-4139630b70d08a15f3407d2624167124c26b31fa.zip |
SuExec should use /usr/local/apache2 not /usr/local/apache as the default
directory.
PR: 8789, 13104
Submitted by: SangBeom han <sbhan@os.korea.ac.kr>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/suexec.h')
-rw-r--r-- | support/suexec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/suexec.h b/support/suexec.h index 34a91f9949..2342c16822 100644 --- a/support/suexec.h +++ b/support/suexec.h @@ -117,7 +117,7 @@ * debugging purposes. */ #ifndef AP_LOG_EXEC -#define AP_LOG_EXEC "/usr/local/apache/logs/cgi.log" /* Need me? */ +#define AP_LOG_EXEC "/usr/local/apache2/logs/cgi.log" /* Need me? */ #endif /* @@ -126,7 +126,7 @@ * that can be used for suEXEC behavior. */ #ifndef AP_DOC_ROOT -#define AP_DOC_ROOT "/usr/local/apache/htdocs" +#define AP_DOC_ROOT "/usr/local/apache2/htdocs" #endif /* |