This patch is for the ApacheConfig.java classes. It changes the static
(default) paths from
absolute paths to relative paths.
Without this fix, the paths are not configurable from the server.xml file as
intended. The conf paths
also default to / - i.e. /conf/jk/ and /conf/jserv/. When using absolute
paths, the TOMCAT_HOME is
ignored as well as any prefix that you set in server.xml.
Tested on Solaris and Windows 2000
# cvs diff -u ApacheConfig.java
Index: ApacheConfig.java
===================================================================
RCS file:
/home/cvspublic/jakarta-tomcat/src/share/org/apache/tomcat/modules/config/Ap
acheConfig.java,v
retrieving revision 1.7
diff -u -r1.7 ApacheConfig.java
--- ApacheConfig.java 2001/03/05 02:56:49 1.7
+++ ApacheConfig.java 2001/03/13 16:32:59
@@ -118,13 +118,13 @@
// XXX maybe conf/
/** default path to JServ .conf location */
- public static final String
APACHE_CONFIG="/conf/jserv/tomcat-apache.conf";
+ public static final String
APACHE_CONFIG="conf/jserv/tomcat-apache.conf";
/** default path to mod_jk .conf location */
- public static final String MOD_JK_CONFIG = "/conf/jk/mod_jk.conf";
+ public static final String MOD_JK_CONFIG = "conf/jk/mod_jk.conf";
/** default path to workers.properties file */
- public static final String WORKERS_CONFIG =
"/conf/jk/workers.properties";
+ public static final String WORKERS_CONFIG =
"conf/jk/workers.properties";
/** default mod_jk log file location */
- public static final String JK_LOG_LOCATION = "/logs/mod_jk.log";
+ public static final String JK_LOG_LOCATION = "logs/mod_jk.log";
/** default location of mod_jserv Apache plug-in. */
public static final String MOD_JSERV;
/** default location of mod_jk Apache plug-in. */
--
Mike Braden
[EMAIL PROTECTED]
[EMAIL PROTECTED]
ApacheConfig.patch
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]