mirror of
https://github.com/apache/httpd.git
synced 2025-11-08 04:22:21 +03:00
make provider selection available in .htaccess files
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98146 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -150,7 +150,7 @@ static const char *add_authn_provider(cmd_parms *cmd, void *config,
|
|||||||
|
|
||||||
static const command_rec auth_basic_cmds[] =
|
static const command_rec auth_basic_cmds[] =
|
||||||
{
|
{
|
||||||
AP_INIT_ITERATE("AuthBasicProvider", add_authn_provider, NULL, ACCESS_CONF,
|
AP_INIT_ITERATE("AuthBasicProvider", add_authn_provider, NULL, OR_AUTHCFG,
|
||||||
"specify the auth providers for a directory or location"),
|
"specify the auth providers for a directory or location"),
|
||||||
AP_INIT_FLAG("AuthBasicAuthoritative", ap_set_flag_slot,
|
AP_INIT_FLAG("AuthBasicAuthoritative", ap_set_flag_slot,
|
||||||
(void *)APR_OFFSETOF(auth_basic_config_rec, authoritative),
|
(void *)APR_OFFSETOF(auth_basic_config_rec, authoritative),
|
||||||
|
|||||||
@@ -688,7 +688,7 @@ static const command_rec digest_cmds[] =
|
|||||||
{
|
{
|
||||||
AP_INIT_TAKE1("AuthName", set_realm, NULL, OR_AUTHCFG,
|
AP_INIT_TAKE1("AuthName", set_realm, NULL, OR_AUTHCFG,
|
||||||
"The authentication realm (e.g. \"Members Only\")"),
|
"The authentication realm (e.g. \"Members Only\")"),
|
||||||
AP_INIT_ITERATE("AuthDigestProvider", add_authn_provider, NULL, ACCESS_CONF,
|
AP_INIT_ITERATE("AuthDigestProvider", add_authn_provider, NULL, OR_AUTHCFG,
|
||||||
"specify the auth providers for a directory or location"),
|
"specify the auth providers for a directory or location"),
|
||||||
AP_INIT_ITERATE("AuthDigestQop", set_qop, NULL, OR_AUTHCFG,
|
AP_INIT_ITERATE("AuthDigestQop", set_qop, NULL, OR_AUTHCFG,
|
||||||
"A list of quality-of-protection options"),
|
"A list of quality-of-protection options"),
|
||||||
|
|||||||
Reference in New Issue
Block a user