This will be accessed from a Windows 2K based web accessing files on a UNIX server.
Not sure I get that. Is W2K the server or client? Do you want to display directories that are on the *nix server via a web server running on the W2K box? I´m confused.
Andreas
The top level config file is httpd.conf and that's the one I'll describe. There will also be a configuration file (or part of httpd.conf) for your individual domain, and it's possible you have an .htaccess file for your site. The syntax will be same in each of the files, and the lowest level one will determine your settings. Here's what you should look for (remembering that yours will be slightly or more-than-slightly different).
<Directory /home>
Options Includes SymLinksIfOwnerMatch ExecCGI
… more lines
</Directory>
The directory will certainly be different than the /home and the options listed may be more or less. What you need to do is add a new parameter to the Options list.
<Directory /home>
Options Indexes Includes SymLinksIfOwnerMatch ExecCGI
… more lines
</Directory>
Be aware that letting everyone see the contents of your directories is considered a security risk. Ergo, the best way to implement this is at the directory level, with an .htaccess file (assuming that is enabled).
Here is my settings in httpd.conf - what is wrong with this?
<Directory /users/directory/files/info/>
Options Indexes +FollowSymLinks
##Options ExecCGI
AllowOverride All
</Directory>
Alias /users /users/dmos/files/configs
<Directory "/users/dmos/files/configs">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>