Django

Code

Show
Ignore:
Timestamp:
06/30/08 07:25:03 (2 months ago)
Author:
mtredinnick
Message:

Fixed #6612 -- Updated Apache auth recipe for Apache 2.2. Thanks, trbs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/apache_auth.txt

    r7294 r7804  
    4040 
    4141    You'll also need to insert configuration directives that prevent Apache 
    42     from trying to use other authentication modules. Depending on which other 
    43     authentication modules you have loaded, you might need one or more of 
    44     the following directives:: 
     42    from trying to use other authentication modules, as well as specifying 
     43    the ``AuthUserFile`` directive and pointing it to ``/dev/null``. Depending 
     44    on which other authentication modules you have loaded, you might need one 
     45    or more of the following directives:: 
    4546 
    4647        AuthBasicAuthoritative Off 
     
    6667            AuthType Basic 
    6768            AuthName "example.com" 
     69            **AuthUserFile /dev/null** 
    6870            **AuthBasicAuthoritative Off** 
    6971            Require valid-user