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

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

View file

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

View file

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