I'm trying to get mod_webapp working with Tomcat 4.0 but have not been
having any luck after spending days on the darn thing. When I set it up and
I hit any virtual host, it just sits there until the browser times out.
Isn't this thing supposed to work? I'm not seeing any errors logged...
(Going insane!!!)
In my httpd.conf I have:
------------------------------------
LoadModule webapp_module libexec/mod_webapp.so
AddModule mod_webapp.c
WebAppConnection conn warp localhost:8008
<VirtualHost 192.168.111.7>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /usr/local/apache/htdocs/unrealwatch.net
ServerName www.unrealwatch.net
ServerAlias unrealwatch.net
ErrorLog logs/unrealwatch.net-error_log
CustomLog logs/unrealwatch.net-access_log common
WebAppDeploy unrealwatch conn /uw
</VirtualHost>
And In my server.xml I have:
------------------------------------
<!-- Define an Apache-Connector Service -->
<Service name="Tomcat-Apache">
<Connector className="org.apache.catalina.connector.warp.WarpConnector"
port="8008" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0"/>
<!-- Replace "localhost" with what your Apache "ServerName" is set to
-->
<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" defaultHost="unrealwatch.net" debug="0"
appBase="webapps">
<!-- Global logger unless overridden at lower levels -->
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="apache_log." suffix=".txt"
timestamp="true"/>
<!-- Because this Realm is here, an instance will be shared globally
-->
<Realm className="org.apache.catalina.realm.MemoryRealm" />
</Engine>
</Service>
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>