Personnaliser les sources : Différence entre versions

De wiki gPod
Aller à : Navigation, rechercher
(gpod\src\main\webapp\WEB-INF\web.xml)
(gpod\src\main\webapp\WEB-INF\web.xml)
Ligne 8 : Ligne 8 :
  
 
<code>
 
<code>
<init-param>
+
'<init-param>
 
   <description>Type d\'authentification : values = {CAS, LOGIN}</description>
 
   <description>Type d\'authentification : values = {CAS, LOGIN}</description>
 
   <param-name>authenticationType</param-name>
 
   <param-name>authenticationType</param-name>
 
   <param-value>'''CAS'''</param-value>
 
   <param-value>'''CAS'''</param-value>
</init-param>     
+
'</init-param>     
 
</code>
 
</code>
  

Version du 9 décembre 2013 à 16:06

Afin d'adapter gPod à votre configuration, il vous faut modifier plusieurs fichiers de configuration dans les sources :

gpod\src\main\webapp\WEB-INF\web.xml

Ce fichier permet de configurer votre type d'authentification avec CAS (SSO) ou par login/mot de passe classique.

Pour sélectionner le type modifiez la balise <param-value> de authenticationType avec la valeur CAS ou LOGIN

'<init-param>

  <description>Type d\'authentification : values = {CAS, LOGIN}</description>
  <param-name>authenticationType</param-name>
  <param-value>CAS</param-value>

'</init-param>


Si vous optez pour le CAS, personnaliser l'URL de connexion avec l'adresse de votre serveur : <init-param> <param-name>edu.yale.its.tp.cas.client.filter.serviceUrl</param-name> <param-value>http://ADRESSESERVEUR:8080/gpod/public/Authentification</param-value> </init-param>