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__", "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":[
"insecure": true "YunoHost_Users"
],
"insecure":true
} }

View file

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

View file

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