I can't manage to turn off the directory listings
that Apache generates. I have tried
Options FollowSymLinks
(i.e. I removed the Indexes option that used to be there)
and
Options +FollowSymLinks -Indexes
(i.e. explicitly unsetting Indexes)
None of this is working.
I am using Apache/1.3.20 on Solaris (SunOS 5.8).
Below are the directory blocks from my httpd.conf file.
Any help is appreciated.
Thanks,
Dan
<Directory />
Options +FollowSymLinks -Indexes
AllowOverride None
</Directory>
<Directory "/opt/local/apache/htdocs/nuserve">
Options +FollowSymLinks -Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/opt/local/apache/icons">
Options -Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/opt/local/apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/opt/local/apache/cgi-bin">
SSLOptions +StdEnvVars
</Directory>