File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments