doc: installation: fix ldap backend setting

This commit is contained in:
Élie Bouttier 2014-08-31 11:09:39 -07:00
parent e374f95966
commit a5329a2a8f

View file

@ -290,10 +290,8 @@ Enter in the virtualenv and install needed packages::
Add ``django_auth_ldap.backend.LDAPBackend`` to your authentication backends Add ``django_auth_ldap.backend.LDAPBackend`` to your authentication backends
in ``ponytracker/local_settings.py``:: in ``ponytracker/local_settings.py``::
AUTHENTICATION_BACKENDS = ( AUTHENTICATION_BACKENDS += (
'django.contrib.auth.backends.ModelBackend',
'django_auth_ldap.backend.LDAPBackend', 'django_auth_ldap.backend.LDAPBackend',
'issue.backends.ProjectBackend',
) )
Configure the backend by adding required variables in your local settings. Configure the backend by adding required variables in your local settings.