1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
This commit is contained in:
Éric Gaspar 2024-06-24 21:40:19 +02:00
parent 3be0c50068
commit 994c126ac7
3 changed files with 30 additions and 19 deletions

View file

@ -1,8 +1,10 @@
{
"httpAddress": "127.0.0.1:__PORT_LDAP__",
"ldapServer": "ldap://localhost:389",
"ldapBase": "ou=users,dc=yunohost,dc=org",
"key": __KEY__,
"groups": ["YunoHost_Users"],
"insecure": true
"httpAddress":"127.0.0.1:__PORT_LDAP__",
"ldapServer":"ldap://localhost:389",
"ldapBase":"ou=users,dc=yunohost,dc=org",
"key":"__KEY__",
"groups":[
"YunoHost_Users"
],
"insecure":true
}

View file

@ -1,7 +1,11 @@
"users": {
"description": "YunoHost User Group",
"public": true,
"authServer": "https://__DOMAIN__/auth/",
"authKeys": [__KEY__],
"auto-subgroups": true
}
{
"users":{
"description":"YunoHost User Group",
"public":true,
"authServer":"https://__DOMAIN__/auth/",
"authKeys":[
"__KEY__"
],
"auto-subgroups":true
}
}

View file

@ -1,7 +1,12 @@
"users": {
"__ADMIN__": {"permissions": "op", "password": __PASSWORD_HASH__},
"description": "__GROUP_DESCRIPTION__",
"public": true,
"allow-recording": true,
"auto-subgroups": true
{
"users":{
"__ADMIN__":{
"permissions":"op",
"password":"__PASSWORD_HASH__"
},
"description":"__GROUP_DESCRIPTION__",
"public":true,
"allow-recording":true,
"auto-subgroups":true
}
}