Changeset 7836 for django/branches/gis/docs/apache_auth.txt
- Timestamp:
- 07/04/08 15:16:22 (6 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/docs/apache_auth.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7767 to /django/trunk:1-7835
django/branches/gis/docs/apache_auth.txt
r7354 r7836 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
