httpd.conf
Hi,in my apache httpd.conf at line 250 i have:
<Directory />
Options FollowSymLinks Indexes
AllowOverride All
</Directory>
At line 265 I have:
<Directory /home/httpd/docs>
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks Includes
#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
If i do not want any directories contents to be listed in the web browser do i change one of the above entries? If so which one and to what?