Configure app server to view server files

Hi,

We have a OEL6.1 installed on our server.
We want developers to view there application logs generated on the server, but doesn't really want to give them access to server machine.

Can someone please suggest how can we configure apache/httpd to create a url which will show all files in particular folder in the client browser...?

Thanks and Regard!

Where to put this can vary, in my system it'd go in its own individual '.conf' file under /etc/apache2/vhosts.d/, but perhaps something like this:

<VirtualHost *:80>
        ServerName mywebsite.com
# So that when they go to the webpage, it shows a directory listing instead
# of 'access denied'
        Options Indexes
        DocumentRoot /path/to/directory_to_show
</VirtualHost>