> From: Zengfa Gao [mailto:[EMAIL PROTECTED] 
> Subject: Using DefaultServlet for directory outside of webapps
> 
> Is any setting for us to redirectory DefaultServlet to
> look at other defined directory? For example, if we
> put files under /var/opt/ourshare directory, how can
> we do it?

The easiest way is to define another <Context> with a docBase set to the
location of the external directory.  For example, place the following in
conf/Catalina/[host]/ourshare.xml:

<Context docBase="/var/opt/ourshare"/>

You can then forward or redirect references to the images to
"/ourshare/[image].gif" and the DefaultServlet will handle them
properly.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to