*) mod_cache: Add CacheIgnoreHeaders directive. *) mod_ldap: Added the directive LDAPConnectionTimeout to configure the ldap socket connection timeout value. *) Correctly export all mod_dav public functions. *) Add a build script to create a solaris package. *) worker MPM: Fix a problem which could cause httpd processes to remain active after shutdown. *) Unix MPMs: Shut down the server more quickly when child processes are slow to exit. *) Remove formatting characters from ap_log_error() calls. These were escaped as fallout from CAN-2003-0020. *) mod_ssl: If SSLUsername is used, set r->user earlier. *) htdigest: Fix permissions of created files. *) core_input_filter: Move buckets to a persistent brigade instead of creating a new brigade. This stop a memory leak when proxying a Streaming Media Server. *) mod_win32: Ignore both PATH_INFO as well as PATH_TRANSLATED to avoid hiccups from additional path information passed in non-utf-8 format.
34 lines
1 KiB
Text
34 lines
1 KiB
Text
$NetBSD: patch-al,v 1.3 2005/04/25 09:13:14 adam Exp $
|
|
|
|
--- include/httpd.h.orig 2005-02-26 09:04:10.000000000 +0000
|
|
+++ include/httpd.h
|
|
@@ -105,9 +105,9 @@ extern "C" {
|
|
/* The name of the log files */
|
|
#ifndef DEFAULT_ERRORLOG
|
|
#if defined(OS2) || defined(WIN32)
|
|
-#define DEFAULT_ERRORLOG "logs/error.log"
|
|
+#define DEFAULT_ERRORLOG DEFAULT_REL_LOGFILEDIR "/error.log"
|
|
#else
|
|
-#define DEFAULT_ERRORLOG "logs/error_log"
|
|
+#define DEFAULT_ERRORLOG DEFAULT_REL_LOGFILEDIR "/error.log"
|
|
#endif
|
|
#endif /* DEFAULT_ERRORLOG */
|
|
|
|
@@ -123,7 +123,7 @@ extern "C" {
|
|
|
|
/* The name of the server config file */
|
|
#ifndef SERVER_CONFIG_FILE
|
|
-#define SERVER_CONFIG_FILE "conf/httpd.conf"
|
|
+#define SERVER_CONFIG_FILE DEFAULT_REL_SYSCONFDIR "/httpd.conf"
|
|
#endif
|
|
|
|
/* Whether we should enable rfc1413 identity checking */
|
|
@@ -214,7 +214,7 @@ extern "C" {
|
|
|
|
/** The name of the MIME types file */
|
|
#ifndef AP_TYPES_CONFIG_FILE
|
|
-#define AP_TYPES_CONFIG_FILE "conf/mime.types"
|
|
+#define AP_TYPES_CONFIG_FILE DEFAULT_REL_SYSCONFDIR "/mime.types"
|
|
#endif
|
|
|
|
/*
|