diff --git a/README.markdown b/README.markdown index 420779b..9ff5b26 100644 --- a/README.markdown +++ b/README.markdown @@ -6,18 +6,24 @@ First, you'll need a few prerequisites. * 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 @@ -30,7 +36,7 @@ privieges on (see the docs for the AuthOpenIDDBLocation directive on the homepag In either a Directory, Location, or File directive in httpd.conf, place the following directive: AuthType OpenID - Require valid-user + Require valid-user There are also additional, optional directives. See the homepage for a list and docs. diff --git a/configure.ac b/configure.ac index 8a58137..b60b160 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([mod_auth_openid], [0.7], [bamuller@gmail.com]) +AC_INIT([mod_auth_openid], [0.8], [bamuller@gmail.com]) AC_DEFINE([PACKAGE_URL],["http://findingscience.com/mod_auth_openid"],[project url]) AM_CONFIG_HEADER(src/config.h) AM_INIT_AUTOMAKE()