Remote Http Auth

This Authentication module makes it possible for wiki users to authenticate with their username and password used on any remote webpage with http authentication enabled.

See also the other authenticators in the AuthMarket.

Parts of this module are based on the code from this article: http://www.voidspace.org.uk/python/articles/authentication.shtml

Installation

Put RemoteHttpAuth.py into the wiki directory, where it can be found by the configuration file

Add it to wikiconfig.py configuration file:

   1     from remote_RemoteHttpAuth import RemoteHttpAuth
   2     auth = [PHPSessionAuth(), RemoteHttpAuth(auth_url="https://some.server.com/some/webpage",
   3                                 auth_hint="You should use your username and password used on some.server/some/webpage",
   4                                 required_web_content="Login OK\n",
   5                                 auto_email_domain="some.server.com",
   6                                 autocreate=True)]

Description

History

MoinMoin: JakubSchmidtke/RemoteHttpAuth (last edited 2009-02-28 07:47:20 by JakubSchmidtke)