Hi!
Подскажите, как можно выкрутиться в такой ситуации:
===========================================================
<VirtualHost x.x.x.x>
ServerName www.x.com
DocumentRoot /www/virtual/...
ErrorLog /var/adm/httpd/x-error.log
CustomLog /var/log/httpd/x-access.log combined
LogLevel warn
AddHandler strip-meta-http .htm .html
CharsetDisable on
<Location />
AllowOverride AuthConfig Limit
AuthName "Resticted Area"
AuthType "Basic"
AuthUserfile passwd
AuthGroupfile groups
<Limit GET>
require group staff
</Limit>
</Location>
</VirtualHost>
и в одном из внутренних каталогов этого виртуального хоста такой
.htaccess:
===========================================================
AuthName "Yet More Restricted Area"
AuthType basic
AuthUserfile passwd
AuthGroupFile groups
<Limit GET>
require user buka
require group staff
</Limit>
и при попытке прямого доступа к этому каталогу аутентификация для
пользователя buka не проходит. Понятно, почему - доступ к виртуальному
хосту закрыт и до .htaccess не доходит. Как можно сделать наоборот?
Описывать этот каталог в глобальном конфиге?
Т.е. нужно иметь general authentication и more specific для некоторых
ресурсов.
Спасибо :)
--
Vladimir Litovka <doka@xxxxxxxxxxxxxx>
. Phone/Fax: +380 44 2351511
. ICQ/none, talk/none ;)
=============================================================================
= Apache-Talk@xxxxxxxxxxxxx mailing list =
Mail "unsubscribe apache-talk" to majordomo@xxxxxxxxxxxxx if you want to quit.
= Archive avaliable at http://www.lexa.ru/apache-talk =
"Russian Apache" includes software developed
by the Apache Group for use in the Apache HTTP server project
(http://www.apache.org/) See
Apache LICENSE.
Copyright (C) 1995-2001 The Apache Group. All rights reserved.
Copyright (C) 1996 Dm. Kryukov; Copyright (C)
1997-2009 Alex Tutubalin. Design (C) 1998 Max Smolev.