Skip to content

Commit

Permalink
bumped version to 0.8 as dev version, fixed formatting in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuller committed Oct 23, 2013
1 parent 5d8f50b commit d9804e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mod_auth_openid], [0.7], [[email protected]])
AC_INIT([mod_auth_openid], [0.8], [[email protected]])
AC_DEFINE([PACKAGE_URL],["http://findingscience.com/mod_auth_openid"],[project url])
AM_CONFIG_HEADER(src/config.h)
AM_INIT_AUTOMAKE()
Expand Down

0 comments on commit d9804e2

Please sign in to comment.