Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm very new to Django and LDAP ... any help is is appreciated.

So i'm trying to setup and ldaps in Django. I'm trying to follow this (http://packages.python.org/django-auth-ldap/) instruction, but i have few questions ...

  1. Where is AUTHENTICATION_BACKENDS located? So that i can add django_auth_ldap.backend.LDAPBackend
  2. Where is AUTH_LDAP_SERVER_URI?

If i get the solutions to these i maybe able to figure out the rest ...

Thanks a lot for looking into this.

share|improve this question

1 Answer

AUTHENTICATION_BACKENDS should be located in your settings.py. This is where almost all configuration is done.

For AUTH_LDAP_SERVER_URI, I think you need to add this as a global variable to your settings.py.

You may also take a quick look at the example configuration on the page you referred to.


EDIT

You are right, those variables are not present in the initial settings.py. You need to add the following to your settings.py:

# Keep ModelBackend around for per-user permissions and maybe a local
# superuser.
AUTHENTICATION_BACKENDS = (
    'django_auth_ldap.backend.LDAPBackend',
    'django.contrib.auth.backends.ModelBackend',
)

AUTH_LDAP_SERVER_URI = "ldap://ldap.example.com"  # replace by the real URI
share|improve this answer
Thanks for the reply! I don't see AUTHENTICATION_BACKENDS in my settings.py. Is there more than one settings.py? – user1443144 Jul 18 '12 at 19:48
You are right, please see the edited answer above. Hope this helps. – cyroxx Jul 18 '12 at 20:40
Thanks cyroxx! I noticed that packages.python.org/django-auth-ldap/#auth-ldap-bind-dn is not exactly what i need....i need authentication against ssl....any good documentation on that? – user1443144 Jul 19 '12 at 19:41
I'm not sure what you mean. Maybe something like the following? djm.org.uk/using-django-auth-ldap-active-directory-ldaps – cyroxx Jul 19 '12 at 20:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.