I have used the auto configuration file which is generated by tomcat. It
defines some configuration settings which I guess are used by apache, it uses
pretty much the syntax you'll find in httpd.conf.
If you are not using such, I suppose you could manually insert a new virtual
host, i guess for each context. Within that you can define a location for
which you can define settings like AllowOverride None...N Indexing ..etc.
I haven't found any such option in the admin web app, so you should search
into <CATALINA_HOME>/conf directory.
Here is a sample:
<VirtualHost localhost>
ServerName localhost
#################### localhost:/webdav ####################
# Static files
Alias /webdav "/usr/local/jakarta-tomcat-4.1.18/webapps/webdav"
<Directory "/usr/local/jakarta-tomcat-4.1.18/webapps/webdav">
Options Indexes FollowSymLinks
DirectoryIndex index.jsp index.html index.htm
</Directory>
# Deny direct access to WEB-INF and META-INF
#
<Location "/webdav/WEB-INF/*">
AllowOverride None
deny from all
</Location>
<Location "/webdav/META-INF/*">
AllowOverride None
deny from all
</Location>
JkMount /webdav/*.jsp ajp13
</VirtualHost>
Thanks
Thijs Thiessens
Op vrijdag 14 februari 2003 23:12, schreef Filip Hanik:
> how about posting your solution for the sake of archives
>
> Filip
>
> -----Original Message-----
> From: Thijs Thiessens [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 14, 2003 2:11 PM
> To: Tomcat Users List
> Subject: Re: Indexing! Already solved
>
>
> Sorry.. Yelling to loud, thinking to little....
> I just solved it.
>
>
> Thijs Thiessens
>
> Op vrijdag 14 februari 2003 22:42, schreef Thijs Thiessens:
> > Hey!
> >
> > I have connected apache and tomcat, however indexing is turned on, and
> > I'm unable to find this configuration setting. Perhaps someone could help
> > me out here..
> >
> > Thijs Thiessens
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]