为 wekan 启用 ldap

为 wekan 启用 ldap

尝试在 ubuntu 服务器上使用 snap 设置 wekan。我所做的只是通过指令启用 ldap:

Ldap Enable.
To enable the ldap of Wekan:
        $ snap set wekan LDAP_ENABLE='true'
        -Disable the ldap of Wekan:
        $ snap set wekan LDAP_ENABLE='false'

并出现错误:snap set wekan LDAP_ENABLE='true' 错误:无法执行以下任务: - 运行“wekan”snap 的配置钩子(无效选项名称:“LDAP_ENABLE”)

https://github.com/wekan/wekan/wiki/LDAP

有人有 wekan 项目和 ldap 设置经验吗?

答案1

您使用的设置键名称格式错误。

https://github.com/wekan/wekan/wiki/Adding-new-Snap-settings-to-code#changes-to-snap-help

“Snap 设置需要小写,并且放在单引号内。”

将大写字母替换为小写字母,将下划线替换为破折号。

echo "LDAP_ENABLE"| tr "[:upper:]" "[:lower:]"| sed 's/_/\-/g'

相关内容