dataset/seed/lemonldap/templates/lmConf-1.json

212 lines
7 KiB
JSON
Raw Normal View History

2022-03-08 19:42:28 +01:00
%compiler-settings
commentStartToken = §
%end compiler-settings
{
"mailFrom" : "%%lemon_mail_admin",
"mailLDAPFilter" : "(&(mail=$mail)(objectClass=inetOrgPerson))",
2022-03-29 16:33:20 +02:00
"portalSkinBackground" : "",
"portalCustomCss": "risotto/risotto.css",
2022-03-08 19:42:28 +01:00
"authentication" : "LDAP",
"AuthLDAPFilter" : "(&(cn=$user)(objectClass=inetOrgPerson))",
2022-06-24 19:00:16 +02:00
"managerDn" : "%%ldapclient_user",
"managerPassword" : "%%ldapclient_user_password",
2022-03-08 19:42:28 +01:00
"ldapPpolicyControl" : 1,
"ldapAllowResetExpiredPassword" : 1,
"ldapChangePasswordAsUser" : 1,
2022-06-24 19:00:16 +02:00
"ldapBase" : "%%ldapclient_base_dn",
2022-03-08 19:42:28 +01:00
"ldapExportedVars" : {
"uid" : "uid",
"cn" : "cn",
"sn" : "sn",
"mail" : "mail",
2022-05-04 10:29:03 +02:00
"givenName" : "givenName",
"home" : "homeDirectory"
2022-03-08 19:42:28 +01:00
},
2022-06-26 19:33:44 +02:00
"ldapGroupBase" : "%%ldapclient_group_dn",
2022-06-24 19:00:16 +02:00
"ldapGroupAttributeName" : "member",
2022-03-08 19:42:28 +01:00
"ldapGroupAttributeNameUser" : "cn",
2022-06-24 19:00:16 +02:00
"ldapGroupAttributeNameGroup" : "dn",
"ldapGroupAttributeNameSearch" : "cn",
"ldapGroupAttributeNameUser" : "dn",
"ldapGroupObjectClass" : "groupOfNames",
2022-03-08 19:42:28 +01:00
"ldapPort" : "636",
"ldapServer" : "ldaps://%%ldap_server_address",
"ldapVerify" : "required",
"ldapTimeout" : 120,
2022-05-07 08:11:18 +02:00
"cfgAuthor" : "Risotto",
2022-03-08 19:42:28 +01:00
"cfgNum" : 1,
"cfgVersion" : "2.0.9",
"demoExportedVars" : {
"cn" : "cn",
"mail" : "mail",
"uid" : "uid"
},
"domain" : "%%revprox_client_external_domainname",
"exportedVars" : {
"UA" : "HTTP_USER_AGENT",
"cn" : "cn",
"mail" : "mail"
},
"globalStorageOptions" : {
"Directory" : "/srv/lemonldap-ng/sessions",
"LockDirectory" : "/srv/lemonldap-ng/sessions/lock"
},
"issuerDBOpenIDConnectActivation" : 1,
"localSessionStorageOptions" : {
"cache_depth" : 3,
"cache_root" : "/srv/lemonldap-ng/cache",
"default_expires_in" : 600,
"directory_umask" : "007",
"namespace" : "lemonldap-ng-sessions"
},
"locationRules" : {
"%%revprox_client_external_domainname" : {
"default" : "accept"
2022-04-08 18:52:43 +02:00
%set %%domains = []
2022-03-08 19:42:28 +01:00
%for %%app in %%oauth2.remotes
%set %%key = %%normalize_family(%%app)
2022-06-24 19:00:16 +02:00
§ somethink like ['https://domain/']
%for %%external in %%oauth2['oauth2_' + %%key]['external_' + %%key]['hosts_' + %%key]
2022-04-08 18:52:43 +02:00
%set %%domain = %%str(%%external).split('/', 3)[-2]
%if %%domain not in %%domains
2022-06-24 19:00:16 +02:00
},
"%%domain" : {
"^/logout" : "logout_sso",
2022-06-26 19:33:44 +02:00
"default" : "$groups eq \"%%external['family_' + %%key]\""
2022-04-08 18:52:43 +02:00
%%domains.append(%%domain)%slurp
%end if
2022-06-24 19:00:16 +02:00
%end for
2022-03-08 19:42:28 +01:00
%end for
}
},
"loginHistoryEnabled" : 1,
"macros" : {
"UA" : "$ENV{HTTP_USER_AGENT}",
"_whatToTrace" : "$_auth eq 'SAML' ? lc($_user.'@'.$_idpConfKey) : $_auth eq 'OpenIDConnect' ? lc($_user.'@'.$_oidc_OP) : lc($_user)"
},
"mailUrl" : "https://%%revprox_client_external_domainname/resetpwd",
"mySessionAuthorizedRWKeys" : [
"_appsListOrder",
"_oidcConnectedRP",
"_oidcConsents"
],
"notification" : 1,
"notificationStorageOptions" : {
"dirName" : "/srv/lemonldap-ng/notifications"
},
"oidcRPMetaDataExportedVars" : {
%set %%len_app = %%len(%%oauth2.remotes)
%for %%idx, %%app in %%enumerate(%%oauth2.remotes)
%set %%key = %%normalize_family(%%app)
%set %%description = %%oauth2['oauth2_' + %%key]['description_' + %%key]
"%%app" : {
"email" : "mail",
"family_name" : "sn",
"name" : "cn",
2022-05-04 10:29:03 +02:00
"nickname" : "uid",
"home" : "home"
2022-03-08 19:42:28 +01:00
%if %%len_app - 1 == %%idx
}
%else
},
%end if
%end for
},
"oidcRPMetaDataOptions" : {
%for %%idx, %%app in %%enumerate(%%oauth2.remotes)
%set %%key = %%normalize_family(%%app)
%set %%description = %%oauth2['oauth2_' + %%key]['description_' + %%key]
"%%app" : {
"oidcRPMetaDataOptionsAllowClientCredentialsGrant" : 0,
"oidcRPMetaDataOptionsAllowOffline" : 1,
"oidcRPMetaDataOptionsAllowPasswordGrant" : 0,
"oidcRPMetaDataOptionsBypassConsent" : 1,
"oidcRPMetaDataOptionsClientID" : "%%key",
"oidcRPMetaDataOptionsClientSecret" : "%%oauth2['oauth2_' + %%key]['secret_' + %%key]",
"oidcRPMetaDataOptionsIDTokenForceClaims" : 0,
"oidcRPMetaDataOptionsIDTokenSignAlg" : "%%oauth2['oauth2_' + %%key]['token_signature_algo_' + %%key]",
"oidcRPMetaDataOptionsLogoutSessionRequired" : 0,
"oidcRPMetaDataOptionsLogoutType" : "front",
§ "oidcRPMetaDataOptionsLogoutUrl" : "https://git.gnunux.com/user/oauth2/NAME/logout",
§FIXME
"oidcRPMetaDataOptionsPostLogoutRedirectUris" : "gnunux-allow",
"oidcRPMetaDataOptionsPublic" : 0,
%if %%oauth2['oauth2_' + %%key]['login_' + %%key]
"oidcRPMetaDataOptionsRedirectUris" : "%%oauth2['oauth2_' + %%key]['login_' + %%key]",
%end if
"oidcRPMetaDataOptionsRefreshToken" : 0,
"oidcRPMetaDataOptionsRequirePKCE" : 0
%if %%len_app - 1 == %%idx
}
%else
},
%end if
%end for
},
"oidcServiceKeyIdSig" : "2PDCicoyT45rjsARYcxjfg",
"oidcServiceMetaDataAuthnContext" : {
"loa-1" : 1,
"loa-2" : 2,
"loa-3" : 3,
"loa-4" : 4,
"loa-5" : 5
},
2022-06-24 19:00:16 +02:00
%set %%pub = '\\n'.join(%%get_public_key(%%domain_name_eth0, hide=%%hide_secret).split("\n"))
2022-03-08 19:42:28 +01:00
"oidcServicePublicKeySig" : "%%pub",
2022-06-24 19:00:16 +02:00
%set %%priv = '\\n'.join(%%get_private_key(%%domain_name_eth0, hide=%%hide_secret).split("\n"))
2022-03-08 19:42:28 +01:00
"oidcServicePrivateKeySig" : "%%priv",
"passwordDB" : "LDAP",
"persistentStorage" : "Apache::Session::File",
"persistentStorageOptions" : {
"Directory": "/srv/lemonldap-ng/psessions",
"LockDirectory": "/srv/lemonldap-ng/psessions/lock"
},
"portal" : "https://%%revprox_client_external_domainname/",
2022-03-29 16:33:20 +02:00
"portalCheckLogins": 0,
"portalDisplayRegister": 0,
"portalDisplayResetPassword": 0,
"portalMainLogo": "risotto/logo.png",
"showLanguages": 0,
2022-03-08 19:42:28 +01:00
"whatToTrace" : "_whatToTrace",
2022-03-29 16:33:20 +02:00
%set %%remotes = {}
%for %%index, %%app in %%enumerate(%%oauth2.remotes)
%set %%key = %%normalize_family(%%app)
%set %%description = %%oauth2['oauth2_' + %%key]['description_' + %%key]
%if not %%description
%continue
%end if
%set %%dico = {'key': %%key,
'description': %%description,
'logo': "risotto/" + %%oauth2['oauth2_' + %%key]['logo_' + %%key],
'name': %%oauth2['oauth2_' + %%key]['name_' + %%key],
2022-06-24 19:00:16 +02:00
'uri': %%oauth2['oauth2_' + %%key]['external_' + %%key]['hosts_' + %%key]}
2022-03-29 16:33:20 +02:00
%%remotes.setdefault(%%oauth2['oauth2_' + %%key]['category_' + %%key], []).append(%%dico)%slurp
%end for
2022-03-08 19:42:28 +01:00
"applicationList" : {
2022-03-29 16:33:20 +02:00
%for %%index, %%cat in %%enumerate(%%remotes)
%if %%index != 0
,
%end if
"cat_%%index" : {
"catname" : "%%cat",
%for %%dico in %%remotes[%%cat]
2022-05-07 08:11:18 +02:00
%for %%idx, %%uri in %%enumerate(%%dico['uri'])
"%%{dico['key']}_%%idx" : {
2022-03-08 19:42:28 +01:00
"options" : {
2022-03-29 16:33:20 +02:00
"description" : "%%dico['description']",
2022-03-08 19:42:28 +01:00
"display" : "auto",
2022-03-29 16:33:20 +02:00
"logo" : "%%dico['logo']",
"name" : "%%dico['name']",
2022-05-07 08:11:18 +02:00
"uri" : "%%uri"
2022-03-08 19:42:28 +01:00
},
"type" : "application"
},
2022-05-07 08:11:18 +02:00
%end for
%end for
2022-03-08 19:42:28 +01:00
"type" : "category"
2022-03-29 16:33:20 +02:00
}%slurp
%end for
2022-03-08 19:42:28 +01:00
}
}