• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

acinclude.d/H23-Oct-2013-312277

src/H03-May-2022-2,3681,599

.gitignoreH A D23-Oct-2013398 3535

AUTHORSH A D23-Oct-2013352 96

COPYINGH A D23-Oct-20131.1 KiB2620

ChangeLogH A D23-Oct-20133.5 KiB6957

INSTALLH A D23-Oct-2013849 3224

Makefile.amH A D23-Oct-201370 63

NEWSH A D23-Oct-201345 11

READMEH A D23-Oct-20131.2 KiB4728

README.markdownH A D23-Oct-20131.2 KiB4728

UPGRADEH A D23-Oct-2013202 43

autogen.shH A D23-Oct-2013151 31

configure.acH A D23-Oct-20133 KiB10283

README

1# Basic Installation
2
3First, you'll need a few prerequisites.
4
5 * the latest libopkele from http://kin.klever.net/libopkele (C++ implementation of important OpenID functions)
6 * libsqlite from http://www.sqlite.org (SQLite C libs)
7
8Next, run:
9
10     ./configure
11
12or
13
14     ./configure --help
15
16to see additional options that can be specified.
17
18Next, run:
19
20     make
21     su root
22     make install
23
24Make sure that the file /tmp/mod_auth_openid.db is owned by the user running Apache.
25You can do this by (assuming www-data is the user running apache):
26
27     su root
28     touch /tmp/mod_auth_openid.db
29     chown www-data /tmp/mod_auth_openid.db
30
31Or you can specify an alternate location that the user running apache has write
32privieges on (see the docs for the AuthOpenIDDBLocation directive on the homepage).
33
34
35# Usage
36In either a Directory, Location, or File directive in httpd.conf, place the following directive:
37
38     AuthType            OpenID
39     Require             valid-user
40
41There are also additional, optional directives.  See the homepage for a list and docs.
42
43The user's identity URL will be available in the REMOTE_USER cgi environment variable after
44authentication.
45
46See [the project page](http://findingscience.com/mod_auth_openid) for more information.
47

README.markdown

1# Basic Installation
2
3First, you'll need a few prerequisites.
4
5 * the latest libopkele from http://kin.klever.net/libopkele (C++ implementation of important OpenID functions)
6 * libsqlite from http://www.sqlite.org (SQLite C libs)
7
8Next, run:
9
10     ./configure
11
12or
13
14     ./configure --help
15
16to see additional options that can be specified.
17
18Next, run:
19
20     make
21     su root
22     make install
23
24Make sure that the file /tmp/mod_auth_openid.db is owned by the user running Apache.
25You can do this by (assuming www-data is the user running apache):
26
27     su root
28     touch /tmp/mod_auth_openid.db
29     chown www-data /tmp/mod_auth_openid.db
30
31Or you can specify an alternate location that the user running apache has write
32privieges on (see the docs for the AuthOpenIDDBLocation directive on the homepage).
33
34
35# Usage
36In either a Directory, Location, or File directive in httpd.conf, place the following directive:
37
38     AuthType            OpenID
39     Require             valid-user
40
41There are also additional, optional directives.  See the homepage for a list and docs.
42
43The user's identity URL will be available in the REMOTE_USER cgi environment variable after
44authentication.
45
46See [the project page](http://findingscience.com/mod_auth_openid) for more information.
47