diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-06-30 15:38:16 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-06-30 15:38:16 +0000 |
| commit | 829fd5a9670a581309797f56bfc7e5140550e873 (patch) | |
| tree | 6efe30b93fd5fc6564392f1dbaaf04c95a4b6bc2 /docs/apache_auth.txt | |
| parent | c349ba4cfc2d137da393bddbda6e78fdb98c9c81 (diff) | |
newforms-admin: Merged from trunk up to [7808]. Fixed #7519, #7573
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/apache_auth.txt')
| -rw-r--r-- | docs/apache_auth.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/apache_auth.txt b/docs/apache_auth.txt index 859050e716..62fd191896 100644 --- a/docs/apache_auth.txt +++ b/docs/apache_auth.txt @@ -39,9 +39,10 @@ with the standard ``Auth*`` and ``Require`` directives:: example at the bottom of this note). You'll also need to insert configuration directives that prevent Apache - from trying to use other authentication modules. Depending on which other - authentication modules you have loaded, you might need one or more of - the following directives:: + from trying to use other authentication modules, as well as specifying + the ``AuthUserFile`` directive and pointing it to ``/dev/null``. Depending + on which other authentication modules you have loaded, you might need one + or more of the following directives:: AuthBasicAuthoritative Off AuthDefaultAuthoritative Off @@ -65,6 +66,7 @@ with the standard ``Auth*`` and ``Require`` directives:: <Location /example/> AuthType Basic AuthName "example.com" + **AuthUserFile /dev/null** **AuthBasicAuthoritative Off** Require valid-user |
