Apache HTTP Сервер Версия 2.2
Apache Module mod_authz_default
Описание: | Authorization fallback module |
---|---|
Статус: | Base |
Идентификатор модуля: | authz_default_module |
Исходный файл: | mod_authz_default.c |
Совместимость: | Available in Apache 2.1 and later |
Summary
This module is designed to be the fallback module, if you don't
have configured an authorization module like
mod_authz_user
or mod_authz_groupfile
.
It simply rejects any authorization request.
Директивы
AuthzDefaultAuthoritative Директива
Описание: | Sets whether authorization is passed to lower level modules |
---|---|
Синтаксис: | AuthzDefaultAuthoritative On|Off |
По умолчанию: | AuthzDefaultAuthoritative On |
Контекст: | directory, .htaccess |
Перекрывает: | AuthConfig |
Статус: | Base |
Модуль: | mod_authz_default |
Setting the AuthzDefaultAuthoritative
directive
explicitly to Off
allows for authorization to be passed on
to lower level modules (as defined in the modules.c
files).
Примечание
Normally there are no lower level modules, since
mod_authz_default
is defined to be already on
a very low level. Therefore you should leave the value of
AuthzDefaultAuthoritative
as default
(On
).