MoinMoin: Difference between revisions

From RavenWiki
Jump to navigationJump to search
(Note that 'AAForceAuthType' available in 1.4.1)
No edit summary
Line 10: Line 10:
Deny from all
Deny from all
AuthType Ucam-WebAuth
AuthType Ucam-WebAuth
AADescription "Geography wiki"
AADescription "St Botolph's College wiki"
Require user spqr1 abc123
Require user spqr1 abc123
Satisfy any
Satisfy any

Revision as of 14:45, 23 March 2011

MoinMoin is a Python-based wiki.

Authenticate users via Raven and then auto-creating accounts is very easy to do, and is supported out-of-the box without hacking the MoinMoin code. However it needs the 'AAForceAuthType' directive which is only available in mod_ucam_webauth version 1.4.1 and above.

  1. Firstly ensure you are using MoinMoin 1.5 or above.
  2. Set up container-based authentication in Apache, as you would have to do anyway, using e.g.
<Location />
	Deny from all
	AuthType Ucam-WebAuth
	AADescription "St Botolph's College wiki"
	Require user spqr1 abc123
	Satisfy any
	# AAForceAuthType in the following line makes Apache think mod_ucam_webauth is actually providing 'Basic' authentication
	AAForceAuthType Basic
</Location>

You should then have a wiki with authenticated access.

To add recognition of the username and auto-creation of accounts, follow the instructions at http://moinmoin.wikiwikiweb.de/HelpOnAuthentication , namely: add the following to wikiconfig.py:

    from MoinMoin.auth import http
    auth = [http]
    user_autocreate = True

(bear in mind that this must be indented correctly in the config file) and that should just work.

The same principle applies if not using Raven as the authentication mechanism - MoinMoin supports autocreation of users.