mirror of
https://github.com/YunoHost-Apps/mobilizon_ynh.git
synced 2024-09-03 19:46:19 +02:00
16 lines
365 B
Elixir
16 lines
365 B
Elixir
|
|
config :mobilizon, Mobilizon.Service.Auth.Authenticator, Mobilizon.Service.Auth.LDAPAuthenticator
|
|
config :mobilizon, :ldap,
|
|
enabled: true,
|
|
host: "127.0.0.1",
|
|
port: 389,
|
|
ssl: false,
|
|
# sslopts: [],
|
|
tls: false,
|
|
# tlsopts: [],
|
|
base: "ou=users,dc=yunohost,dc=org",
|
|
uid: "uid",
|
|
require_bind_for_search: false,
|
|
bind_uid: nil,
|
|
bind_password: nil
|
|
|