| samgfall@gmail.com 2006-08-03, 1:32 am |
| I am running the windows version of Apache 2.2 and have run into a
small problem. I have created several virtual servers to handle
subdomains. The subdomains act as HTTP access to FTP sites. In some
of the subdomains I have enabled basic authentication. I have noticed
that all the directories and files that require authentication are
hidden in the index list. I am new to this versions of apache and
wanted to know if anyone could help me out.
Most everything in the conf file is from the default. Here is an
example of a virtual server directive:
<VirtualHost *:80>
ServerName example.server.com
ServerAdmin user@server.com
DocumentRoot "F:/path/to/root"
ErrorLog "F:/logs/example-error.log"
CustomLog "F:/logs/exampble-access.log" common
<Directory "F:/path/to/root/folder1">
Options Includes Indexes
AllowOverride None
Order allow,deny
Allow from all
AuthType Basic
AuthName "authenticate"
AuthUserFile F:/auth/htpasswd
Require valid-user
</Directory>
</VirtualHost>
Thanks,
sam
|