From 0ef4581fbe7f7d65d012a4f17e41d6be2494e086 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 16 Feb 2022 11:31:08 -0600 Subject: [PATCH] Change syntax of user mapping environment variable. As per https://docs.funkwhale.audio/admin/ldap.html, the format should be `username:uid`, not the JSON that is currently present. --- conf/env.prod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/env.prod b/conf/env.prod index 2675520..e0cfde9 100644 --- a/conf/env.prod +++ b/conf/env.prod @@ -155,7 +155,7 @@ LDAP_BIND_PASSWORD='' LDAP_SEARCH_FILTER=(|(uid={0})) LDAP_START_TLS=False LDAP_ROOT_DN=ou=users,dc=yunohost,dc=org -LDAP_USER_ATTR_MAP={"username": "uid"} +LDAP_USER_ATTR_MAP=username:uid FUNKWHALE_FRONTEND_PATH=__FINALPATH__/front/dist FUNKWHALE_SPA_HTML_ROOT=__FINALPATH__/front/dist/index.html