Browse Source

ldapdev.illyse.org now uses the standard LDAP ports for both v4 and v6

Baptiste Jonglez 10 years ago
parent
commit
349f6302f7
1 changed files with 3 additions and 5 deletions
  1. 3 5
      coin/settings.py

+ 3 - 5
coin/settings.py

@@ -20,10 +20,8 @@ MANAGERS = ADMINS
 
 # Instance LDAP de développement:
 #   adresse du serveur : ldapdev.illyse.org
-#   ipv6, port ldap: 389
-#   ipv6, port ldaps: 636
-#   ipv4, port ldap: 390
-#   ipv4, port ldaps: 637
+#   port ldap: 389
+#   port ldaps: 636
 
 DATABASES = {
     # Base de donnée du SI
@@ -38,7 +36,7 @@ DATABASES = {
     # LDAP backend pour stockage et mise à jour de données
     'ldap': {
         'ENGINE': 'ldapdb.backends.ldap',
-        'NAME': 'ldap://ldapdev.illyse.org:390/',
+        'NAME': 'ldap://ldapdev.illyse.org:389/',
         'TLS': True,
         'GLOBAL_OPTIONS': {ldap.OPT_X_TLS_REQUIRE_CERT: ldap.OPT_X_TLS_NEVER},
         'USER': 'cn=illysedev,ou=services,o=ILLYSE,l=Villeurbanne,st=RHA,c=FR',