-
Notifications
You must be signed in to change notification settings - Fork 27
/
INSTALL
32 lines (24 loc) · 849 Bytes
/
INSTALL
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
Basic Installation
==================
First, you'll need a few prerequisites.
- the latest libopkele from http://kin.klever.net/libopkele/
It's a C++ implementation of important OpenID functions.
- libsqlite from http://www.sqlite.org
SQLite C libs
Next, run:
$> ./configure
or
$> ./configure --help
to see additional options that can be specified.
Next, run:
$> make
$> su root
$> make install
Make sure that the file /tmp/mod_auth_openid.db is owned by the user running Apache.
You can do this by (assuming www-data is the user running apache):
$> su root
$> touch /tmp/mod_auth_openid.db
$> chown www-data /tmp/mod_auth_openid.db
Or you can specify an alternate location that the user running apache has write
privieges on (see the docs for the AuthOpenIDDBLocation directive on the homepage).
See README for more usage information.