75 lines
2.8 KiB
Bash
75 lines
2.8 KiB
Bash
|
||
#-- LOCAL ---------------------------------------------------------------------------------------------------------------------------------
|
||
|
||
# GLOBAL
|
||
RELEASE_SYSTEM=eole
|
||
WEB_URL=%%getVar('web_url','')
|
||
WEB_PROTOCOL=https
|
||
MASTERIDENTITY=%%getVar('envole_masteridentity','')
|
||
MODE_AUTH=%%getVar('envole_modeauth','')
|
||
|
||
# ANNUAIRE
|
||
LDAP_ACTIVATE=%%getBool(%%getVar("activer_openldap", "non"))
|
||
LDAP_LOCAL=%%getBool(%%getVar("openldap_local", "non"))
|
||
LDAP_HOST=%%getVar("openldap_host", '')
|
||
LDAP_PORT=%%getVar("openldap_port", '')
|
||
LDAP_TLS=%%getBool(%%getVar("openldap_tls", "non"))
|
||
LDAP_BASEDN="%%getVar("openldap_basedn", '')"
|
||
LDAP_ADMIN_USERNAME=%%getVar("openldap_user", '')
|
||
LDAP_USER="cn=%%getVar("openldap_user", ''),%%getVar("openldap_basedn", '')"
|
||
LDAP_PASSWORD="%%getVar("openldap_password", '')"
|
||
|
||
# SYNCHRONISATION ANNUAIRE<>NINEGATE
|
||
LDAP_SYNC=%%getBool(%%getVar("ninegate_syncldap", "non"))
|
||
%if %%getVar("ninegate_syncldap", "non") == "non"
|
||
LDAP_TEMPLATE=%%getVar("openldap_ldaptemplate", '')
|
||
%if %%getVar("openldap_ldaptemplate", '') == "scribe"
|
||
SCRIBE_GROUP=%%getBool(%%getVar("ninegate_scribegroup", "non"))
|
||
SCRIBE_MASTER=%%getBool(%%getVar("ninegate_scribemaster", "non"))
|
||
LDAP_BASEUSER="%%getVar("openldap_basedn","")"
|
||
LDAP_BASENIVEAU01="%%getVar("openldap_basedn","")"
|
||
LDAP_BASENIVEAU02="%%getVar("openldap_basedn","")"
|
||
LDAP_BASEGROUP="%%getVar("openldap_basedn","")"
|
||
%end if
|
||
%if %%getVar("openldap_ldaptemplate", '') == "open"
|
||
OPENLDAPREQNIVEAU01=%%getVar("ninegate_openldapreqniveau01","")
|
||
OPENLDAPSYNCHROGROUP=%%getBool(%%getVar("ninegate_openldapsynchrogroup", "non"))
|
||
OPENLDAPREQGROUP=%%getVar(%%ninegate_openldapreqgroup,"")
|
||
LDAP_BASENIVEAU01="%%ldap_base_dn"
|
||
LDAP_BASENIVEAU02="%%ldap_base_dn"
|
||
LDAP_BASEUSER="%%getVar(%%ninegate_openldapsubbranchuser,%%getVar(%%ldap_base_dn,""))"
|
||
LDAP_BASEGROUP="%%getVar(%%ninegate_openldapsubbranchgroup,%%getVar(%%ldap_base_dn,""))"
|
||
%end if
|
||
%end if
|
||
|
||
# CAS
|
||
%if %%getVar("MODE_AUTH", '') == "CAS"
|
||
CAS_ACTIVATE=1
|
||
%else
|
||
CAS_ACTIVATE=0
|
||
%end if
|
||
CAS_LOCAL=%%getBool(%%getVar("cas_local", "non"))
|
||
CAS_HOST=%%getVar("cas_host", "")
|
||
CAS_PORT=%%getVar("cas_port", "")
|
||
CAS_PATH=%%getVar("cas_path", "")
|
||
CAS_URL=https://%%getVar("cas_host", ""):%%getVar("cas_port", "")
|
||
|
||
# NINEGATE
|
||
NINEGATE_ACTIVATE=%%getBool(%%getVar("activer_ninegate", "non"))
|
||
NINEGATE_URL=/ninegate
|
||
|
||
# NEXTCLOUD
|
||
NEXTCLOUD_ACTIVATE=%%getBool(%%getVar("activer_nextcloud", "non"))
|
||
NEXTCLOUD_LOCAL=%%getBool(%%getVar("nextcloud_local", "non"))
|
||
NEXTCLOUD_URL=%%getVar("nextcloud_url", "/nextcloud")
|
||
|
||
# ADMINER
|
||
ADMINER_ACTIVATE=%%getBool(%%getVar("activer_adminer", "non"))
|
||
ADMINER_LOCAL=1
|
||
ADMINER_URL=/adminer/?server=${MARIADB_SERVICE_NAME}&username=${MARIADB_USER}
|
||
|
||
# PHPLDAPADMIN
|
||
PHPLDAPADMIN_ACTIVATE=%%getBool(%%getVar("activer_phpldapadmin", "non"))
|
||
PHPLDAPADMIN_LOCAL=1
|
||
PHPLDAPADMIN_URL=/phpldapadmin
|