Changeset 7804
- Timestamp:
- 06/30/08 07:25:03 (2 months ago)
- Files:
-
- django/trunk/docs/apache_auth.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/apache_auth.txt
r7294 r7804 40 40 41 41 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:: 45 46 46 47 AuthBasicAuthoritative Off … … 66 67 AuthType Basic 67 68 AuthName "example.com" 69 **AuthUserFile /dev/null** 68 70 **AuthBasicAuthoritative Off** 69 71 Require valid-user
