diff --git a/conf/galene-ldap.json b/conf/galene-ldap.json index c271256..245d1a9 100644 --- a/conf/galene-ldap.json +++ b/conf/galene-ldap.json @@ -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 } diff --git a/conf/groupname-ldap.json b/conf/groupname-ldap.json index 81a4600..9a8f2ca 100644 --- a/conf/groupname-ldap.json +++ b/conf/groupname-ldap.json @@ -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 + } +} \ No newline at end of file diff --git a/conf/groupname.json b/conf/groupname.json index 7a285ae..a345d4b 100644 --- a/conf/groupname.json +++ b/conf/groupname.json @@ -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 + } }