diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index 04e389f163..28fdf53603 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -45,7 +45,6 @@
ls
command or the
Win32 dir
shell commandThis module allows the use of HTTP Basic Authentication to
restrict access by looking up users in the given providers.
HTTP Digest Authentication is provided by
mod_auth_digest
.
Description: - | Sets whether authorization and authentication are -passed to lower level modules |
---|---|
Syntax: - | AuthBasicAuthoritative on|off |
Default: - | AuthBasicAuthoritative on |
Context: + | Sets whether authorization and authentication are passed to +lower level modules |
Syntax: + | AuthBasicAuthoritative On|Off |
Default: + | AuthBasicAuthoritative On |
Context: | directory, .htaccess |
Override: | AuthConfig |
Status: | Base |
Module: | mod_auth_basic |
Setting the AuthBasicAuthoritative
directive
- explicitly to 'off' allows for both
+ explicitly to Off
allows for both
authentication and authorization to be passed on to lower level
- modules (as defined in the Configuration
and
- modules.c
files) if there is no
- userID or rule matching the supplied
- userID. If there is a userID and/or rule specified; the usual
+ modules (as defined in the modules.c
files) if there is
+ no userID or rule matching the
+ supplied userID. If there is a userID and/or rule specified, the usual
password and access checks will be applied and a failure will give
an Authorization Required reply.
Description: | Sets the authentication provider(s) for this location |
---|---|
Syntax: - | AuthBasicProvider provider-name |
Context: - | directory, .htaccess |
Override: - | AuthConfig |
Status: + | AuthBasicProvider On|Off|provider-name
+[provider-name] ... |
Default: + | AuthBasicProvider On |
Context: + | directory |
Status: | Base |
Module: | mod_auth_basic |
The AuthBasicProvider
directive sets
- which provider is used to authenticate the users for this location.
On
will choose the default provider
+ (file
). Since the file
provider is implemented
+ by the mod_authn_file
module, you have to make sure,
+ that the module is present in the server.
- See mod_authn_dbm
, mod_authn_file
+
+ <Location /secure>
+
+ AuthBasicProvider dbm
+ AuthDBMType SDBM
+ AuthDBMUserFile /www/etc/dbmpasswd
+ Require valid-user
+
+ </Location>
+
See mod_authn_dbm
and mod_authn_file
for providers.
The value Off
clears the provider list and sets it back
+ to the default.