I assume I would need to use a WebAppDeploy descriptor to map the
users directories to Tomcat, how would I do that for generic users
directories (~/public_html)?
WebAppConnection warpConnection warp localhost:8008
WebAppDeploy examples warpConnection /examples/
WebAppDeploy manager warpConnection /manager/
WebAppDeploy webdav warpConnection /webdav/
Mark R. Diggory wrote:
> I've successflly set up tomcat to server user public_html directories
> using the example in the docmentation.
>
> However, this doesn't seem to work as well when I try it through my
> WARP connection.
>
> Is this possible? Any tips?
>
> <!-- 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" debug="0" appBase="webapps">
>
> <!-- Attempt to define a default virtual host and a listener to
> map the user dir's through the apache connector-->
> <Host name="Apache" debug="0" appBase="webapps" unpackWARs="true">
> <Listener className="org.apache.catalina.startup.UserConfig"
> directoryName="public_html"
> homeBase="/home/login"
> userClass="org.apache.catalina.startup.HomesUserDatabase"/>
> </Host>
>
> </Engine>
>
> </Service>
>
> -Mark Diggory
>
>
>
> --
> To unsubscribe: <mailto:tomcat-user-unsubscribe@jakarta.apache.org>
> For additional commands: <mailto:tomcat-user-help@jakarta.apache.org>
> Troubles with the list: <mailto:tomcat-user-owner@jakarta.apache.org>
>
--
To unsubscribe, e-mail: <mailto:tomcat-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@jakarta.apache.org>
|