Hello,
I have 2 LDAP server (a master and a slave). I want django-auth-ldap to try authentication on both (if one server is down, I want to be able it to use the other one). I found in the doc that we can redefine the prefix (
http://pythonhosted.org/django-auth-ldap/multiconfig.html) so we can have as many LDAP config as we want but so I have to duplicate twice my configuration variables.
So I tried to put the address of the both servers into the AUTH_LDAP_SERVER_URI separated with a coma:
"ldap://server1.mydomain.xx,ldap://server2.mydomain.xx"
It seems to work but I want to be sure it is valid since I didn't found that answer in the doc.
Thank you very much,
Nicolas