Changes between Version 11 and Version 12 of AccountManagerPlugin/AuthStores


Ignore:
Timestamp:
Dec 14, 2011, 1:17:19 AM (12 years ago)
Author:
Dennis McRitchie <dmcr@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin/AuthStores

    v11 v12  
    9191[account-manager]
    9292; configure the plugin to use a page that is secured with http authentication
    93 authentication_url = http://hostname/path
     93authentication_url = http://hostname/trac/path/authFile
    9494password_store = HttpAuthStore
    9595}}}
     
    9797This will generally be matched with an Apache config like:
    9898{{{
    99 <Directory /var/www/html/path>
     99<Location /trac/path/authFile>
    100100   …HTTP authentication configuration…
    101101   Require valid-user
    102102</Directory>
    103103}}}
     104
     105Note that '''authFile''' must exists and must be acessible via the authentication_url value.
    104106
    105107== !SessionStore ==