I am having a small issue with setup. I am connecting fine to the
examples webapp, but, I can't seem to view any .html files that are a part
of the app. Apache is looging them as a 404, but they are still not found
even if I put them in the apache doc root. So it seems that Tomcat does
not know how to send them on to Apache. Now, this has me perplexed
because I have setup Apache/Tomcat integration via mod_webapp before and
not had any issues, although I was not using virtual hosts before. Any
ideas what I am doing wrong. The configs are below and I can send any
additional helpful info you might need (logs, etc.). Also, please feel
free to take a look at my test site http://java.whalin.com/examples/
httpd.conf
--
LoadModule webapp_module libexec/mod_webapp.so
...
<VirtualHost *>
ServerName java.whalin.com
DocumentRoot /usr/local/htdocs/javawww
WebAppConnection conn warp localhost:8008
WebAppDeploy examples conn /examples
WebAppDeploy tomcat-docs conn /tomcat-docs
WebAppInfo /webapp-info
ErrorLog logs/java_error_log
CustomLog logs/java_access_log combined
</VirtualHost>
--
server.xml
--
<Server port="8005" shutdown="SHUTDOWN" debug="1">
<Service name="Tomcat-Apache">
<Connector
className="org.apache.catalina.connector.warp.WarpConnector"
port="8008" minProcessors="5" maxProcessors="75"
enableLookups="false" appBase="webapps"
acceptCount="10" debug="1"/>
<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" defaultHost="java.whalin.com" debug="1">
<Host name="java.whalin.com" debug="1"
appBase="webapps" unpackWARs="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="apache_log." suffix=".txt"
timestamp="true"/>
<Realm className="org.apache.catalina.realm.MemoryRealm" />
<Context path="/examples" docBase="examples" debug="1"
reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="java.whalin.com_examples_log."
suffix=".txt" timestamps="true"/>
</Context>
</Host>
</Engine>
</Service>
</Server>
Thanks for any help or ideas!
Greg
--
Gregory Whalin
[EMAIL PROTECTED]
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>