Apache HTTP Сервер Версия 2.2
Apache Module mod_authn_default
Описание: | Authentication fallback module |
---|---|
Статус: | Base |
Идентификатор модуля: | authn_default_module |
Исходный файл: | mod_authn_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 authentication module like
mod_auth_basic
. It simply rejects any
credentials supplied by the user.
Директивы
AuthDefaultAuthoritative Директива
Описание: | Sets whether authentication is passed to lower level modules |
---|---|
Синтаксис: | AuthDefaultAuthoritative On|Off |
По умолчанию: | AuthDefaultAuthoritative On |
Контекст: | directory, .htaccess |
Перекрывает: | AuthConfig |
Статус: | Base |
Модуль: | mod_authn_default |
Setting the AuthDefaultAuthoritative
directive
explicitly to Off
allows for authentication to be passed on
to lower level modules (as defined in the modules.c
files).
Примечание
Normally there are no lower level modules, since
mod_authn_default
is defined to be already on
a very low level. Therefore you should leave the value of
AuthDefaultAuthoritative
as default
(On
).