Author: mtredinnick
Date: 2007-10-19 23:16:40 -0500 (Fri, 19 Oct 2007)
New Revision: 6540

Modified:
   django/trunk/docs/apache_auth.txt
Log:
Fixed #5782 -- Fixed a small typo spotted by obeattie.


Modified: django/trunk/docs/apache_auth.txt
===================================================================
--- django/trunk/docs/apache_auth.txt   2007-10-20 03:53:44 UTC (rev 6539)
+++ django/trunk/docs/apache_auth.txt   2007-10-20 04:16:40 UTC (rev 6540)
@@ -28,21 +28,21 @@
         SetEnv DJANGO_SETTINGS_MODULE mysite.settings
         PythonAuthenHandler django.contrib.auth.handlers.modpython
     </Location>
-    
+
 .. admonition:: Using the authentication handler with Apache 2.2
 
     If you're using Apache 2.2, you'll need to take a couple extra steps.
-    
+
     You'll need to ensure that ``mod_auth_basic`` and ``mod_authz_user``
     are loaded. These might be compiled statically into Apache, or you might
     need to use ``LoadModule`` to load them dynamically (as shown in the
     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::
-    
+
         AuthBasicAuthoritative Off
         AuthDefaultAuthoritative Off
         AuthzLDAPAuthoritative Off
@@ -51,18 +51,18 @@
         AuthzGroupFileAuthoritative Off
         AuthzOwnerAuthoritative Off
         AuthzUserAuthoritative Off
-        
+
     A complete configuration, with differences between Apache 2.0 and
     Apache 2.2 marked in bold, would look something like:
-    
+
     .. parsed-literal::
-    
+
         **LoadModule auth_basic_module modules/mod_auth_basic.so**
         **LoadModule authz_user_module modules/mod_authz_user.so**
-    
+
         ...
-    
-        <Location /exmaple/>
+
+        <Location /example/>
             AuthType Basic
             AuthName "example.com"
             **AuthBasicAuthoritative Off**
@@ -71,7 +71,7 @@
             SetEnv DJANGO_SETTINGS_MODULE mysite.settings
             PythonAuthenHandler django.contrib.auth.handlers.modpython
         </Location>
-        
+
 By default, the authentication handler will limit access to the ``/example/``
 location to users marked as staff members.  You can use a set of
 ``PythonOption`` directives to modify this behavior:


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to