Apache::AuthzDigest - pick up the authorization pieces of mod_digest


Apache-AuthDigest documentation  | view source Contained in the Apache-AuthDigest distribution.

Index


NAME

Top

Apache::AuthzDigest - pick up the authorization pieces of mod_digest

SYNOPSIS

Top

  PerlModule Apache::AuthDigest
  PerlModule Apache::AuthzDigest

  <Location /protected>
    PerlAuthenHandler Apache::AuthDigest
    PerlAuthzHandler Apache::AuthzDigest
    Require user foo
    AuthType Digest
    AuthName "cookbook"
    AuthDigestFile .htdigest
  </Location>

DESCRIPTION

Top

Apache::AuthzDigest picks up the authorization pieces of mod_digest that Apache::AuthDigest leaves behind, namely the checking behind the "Require user" directive.

see the Apache::AuthDigest manpage for more information on Apache::AuthDigest, which is the real driver here - Apache::AuthzDigest doesn't do much, really.

EXAMPLE

Top

see the SYNOPSIS.

NOTES

Top

Apache::AuthzDigest will decline to process the transaction if mod_digest.c is detected, allowing the faster mod_digest implementation to control the fate of the request.

FEATURES/BUGS

Top

none that I know of yet, but consider this alphaware.

SEE ALSO

Top

perl(1), mod_perl(1), Apache(3), Apache::AuthDigest(3)

AUTHORS

Top

Geoffrey Young <geoff@modperlcookbook.org>

Paul Lindner <paul@modperlcookbook.org>

Randy Kobes <randy@modperlcookbook.org>

COPYRIGHT

Top

HISTORY

Top

This code is derived from the Cookbook::AuthzRole module, available as part of "The mod_perl Developer's Cookbook".

For more information, visit http://www.modperlcookbook.org/


Apache-AuthDigest documentation  | view source Contained in the Apache-AuthDigest distribution.