logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Apache::AuthCookie::FAQ - Frequently Asked Questions about Apache::AuthCookie.

Author

       Michael Schout <mschout@cpan.org>

Bugs

       Please report any bugs or feature requests on the bugtracker website
       <https://github.com/mschout/apache-authcookie/issues>

       When submitting a bug or request, please include a test-file or a patch to an existing test-file that
       illustrates the bug or desired feature.

Description

       This document serves to answer the most frequently asked questions about Apache::AuthCookie.

   HowcanIprotectanentiresite(/)withApache::AuthCookie?
       You have to give an Apache "require" directive that applies to all requests for except for your login
       handler.  The easiest way to do this is to override the auth handlers for your login script. For example,
       if your login handler is "/LOGIN", then you need to use something like the following:

        <Location />
          AuthType My::AuthCookieHandler
          AuthName Whatever
          PerlAuthenHandler My::AuthCookieHandler->authenticate
          PerlAuthzHandler My::AuthCookieHandler->authorize
          require valid-user
        </Location>

        <Location /LOGIN>
          PerlAuthenHandler Apache2::Const::OK
          PerlAuthzHandler Apache2::Const::OK
        </Location>
        ...

Name

       Apache::AuthCookie::FAQ - Frequently Asked Questions about Apache::AuthCookie.

Source

       The development version is on github at <https://github.com/mschout/apache-authcookie> and may be cloned
       from <https://github.com/mschout/apache-authcookie.git>

Version

       version 3.32

See Also