ONYX - 9.0

Authentification LDAP

De MappingDoc
Révision datée du 17 septembre 2019 à 15:53 par Nsmet (discussion | contributions) (Page créée avec « =Configuration d'un serveur Mapping ONYX avec un annuaire LDAP= Ce document décrit la configuration à mettre en oeuvre afin d'activer l'authentification LDAP sur un serv... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

Configuration d'un serveur Mapping ONYX avec un annuaire LDAP

Ce document décrit la configuration à mettre en oeuvre afin d'activer l'authentification LDAP sur un serveur Mapping ONYX.

Pré-requis

- Disposer d'un annuaire LDAP (Active Directory, OpenLdap...) et connaître sa configuration.

Principe

La configuration se fait en 2 étap

Modification du httpd.conf

#BEGIN_MAPPING_v9.0xxxxx
#DO NOT MODIFY THIS BLOCK. It will be automatically updated.
Listen 8002
<VirtualHost *:8002>
 	ServerName 127.0.0.1
	DocumentRoot "C:/MAPPING/M-ProcessingServer/MapHTTPServer"
	ScriptAlias /cgi-bin/ "C:/MAPPING/M-ProcessingServer/MapHTTPServer/cgi-bin/"
	<Directory "C:/MAPPING/M-ProcessingServer/MapHTTPServer">
              AuthType Basic
              AuthName Identification
              AuthBasicProvider ldap
              AuthLDAPBindDN "CN=mapadmin, OU=Current, OU=Mapping, DC=mapping400, DC=local"
              AuthLDAPBindPassword "xxxxxxxx"
              AuthLDAPURL "ldap://192.168.1.5/dc=mapping,dc=local?sAMAccountName?sub?(objectClass=person)"
              LDAPReferrals Off
              Require valid-user
              Options None
	</Directory>
</VirtualHost>
#END_MAPPING_v9.0.xxxxx