I'm just getting the pieces I need setup and am having trouble getting
Tomcat to work with Apache.
My Apache server runs just fine. My standalone Tomcat server runs just
fine. What do I need to do to get Apache to forward servlet/JSP requests
to Tomcat? I've setup the Tomcat-Apache service as follows:
<!-- Define the Tomcat Apache Service -->
<Service name="Tomcat-Apache">
<!-- Define a connection to Apache -->
<Connector
className="org.apache.catalina.connector.warp.WarpConnector"
port="8080" minProcessors="5" maxProcessors="75"
enableLookups="false" redirectPort="8443"/>
<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" debug="0">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="apache_log" suffix=".txt" timestamp="true" />
<Realm className="org.apache.catalina.realm.MemoryRealm" />
<Host name="switchblade">
<Context path="" docBase="/usr2/apache/htdocs"
reloadable="true" debug="0" />
</Host>
</Engine>
</Service>
Am I missing anything?
Thanks to all in advance!
Charles Williams
Sr. Solutions Architect
Document Switch Team
703-338-5162
http://www.vitria.com
--
To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>