Changes between Version 33 and Version 34 of AccountManagerPlugin


Ignore:
Timestamp:
Jan 12, 2007, 3:33:05 PM (17 years ago)
Author:
eli.carter@…
Comment:

Further documentation of HttpAuthStore

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v33 v34  
    139139 '''Package''':: acct_mgr.http
    140140
    141 Used to restrict access to use the http access allowed for authentication_url.
     141Used to delegate authentication to the web server.  This allows access to be restricted based on LDAP, a password file, etc, or some combination of them.
     142
     143Note: This password store does not support listing/adding/removing users or changing passwords.
    142144
    143145{{{
     
    149151; configure the plugin to use a page that is secured with http authentication
    150152authentication_url = http://hostname/path
     153}}}
     154
     155This will generally be matched with an Apache config like:
     156{{{
     157<Directory /var/www/html/path>
     158   ...HTTP authentication configuration...
     159   Require valid-user
     160</Directory>
    151161}}}
    152162