You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Andrey Tourko <to...@belsonet.net> on 2000/04/03 18:48:00 UTC

Directory listing

Hi

I have the following configuration inside <VirtualHost>.

Alias /jsp /usr/local/apache/htdocs/five/jsp
    <Directory /usr/local/apache/htdocs/five/jsp>
	Options Indexes
	DirectoryIndex index.jsp
    </Directory>
ApJServMount /jsp ajpv12://localhost:8007/five

I want to disable directory listing, but inspite of "Options Indexes"
Tomcat 3.1 lists the content of directory, when there is no index.jsp
file. When I comment "ApJServMount /jsp ajpv12://localhost:8007/five"
Apache say that permissions denied, i.e. is works as expected.

What could be a problem?

Thank you.