Apache HTTP Сервер Версия 2.2
Apache Module mod_authz_user
Описание: | User Authorization |
---|---|
Статус: | Base |
Идентификатор модуля: | authz_user_module |
Исходный файл: | mod_authz_user.c |
Совместимость: | Available in Apache 2.1 and later |
Summary
This module provides authorization capabilities so that
authenticated users can be allowed or denied access to portions
of the web site. mod_authz_user
grants
access if the authenticated user is listed in a Require user
directive. Alternatively Require valid-user
can be used to
grant access to all successfully authenticated users.
AuthzUserAuthoritative Директива
Описание: | Sets whether authorization will be passed on to lower level modules |
---|---|
Синтаксис: | AuthzUserAuthoritative On|Off |
По умолчанию: | AuthzUserAuthoritative On |
Контекст: | directory, .htaccess |
Перекрывает: | AuthConfig |
Статус: | Base |
Модуль: | mod_authz_user |
Setting the AuthzUserAuthoritative
directive explicitly to Off
allows for
user authorization to be passed on to lower level modules (as defined
in the modules.c
files) if there is no
user matching the supplied userID.
By default, control is not passed on and an unknown user
will result in an Authentication Required reply. Not
setting it to Off
thus keeps the system secure and forces
an NCSA compliant behaviour.