Skip to content

Commit a751054

Browse files
committed
initial commit
1 parent 2d20a32 commit a751054

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
OVERVIEW
2+
3+
Apache::AuthCookie allows you to intercept a user's first unauthenticated
4+
access to a protected document. The user will be presented with a custom
5+
form where they can enter authentication credentials. The credentials are
6+
posted to the server where AuthCookie verifies them and returns a session
7+
key.
8+
9+
The session key is returned to the user's browser as a cookie. As a cookie,
10+
the browser will pass the session key on every subsequent accesses.
11+
AuthCookie will verify the session key and re-authenticate the user.
12+
13+
All you have to do is write a custom module that inherits from AuthCookie.
14+
See the POD documentation for more details.
15+
16+
INSTALLATION
17+
18+
This module uses the Apache::Test framework for testing. As a result, any
19+
other Apache::Test parameters can be used when generating the Makefile.
20+
21+
perl Makefile.PL -apxs /usr/sbin/apxs
22+
make
23+
make test
24+
make install

0 commit comments

Comments
 (0)