This file is indexed.

/usr/share/perl5/Apache/AuthCookie/FAQ.pod is in libapache2-authcookie-perl 3.18-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# make Dist::Zilla happy.
package Apache::AuthCookie::FAQ;

1;


__END__
=pod

=head1 NAME

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

=head1 VERSION

version 3.18

=head1 DESCRIPTION

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

=head2 How can I protect an entire site (/) with Apache::AuthCookie?

You have to give an Apache C<require> directive that applies to all requests
for B<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 C</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>
 ...

=head1 NAME

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

=head1 AUTHOR

  Michael Schout <mschout@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2000 by Ken Williams.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests to bug-apache-authcookie@rt.cpan.org or through the web interface at:
 http://rt.cpan.org/Public/Dist/Display.html?Name=Apache-AuthCookie

=cut