mirror of
https://github.com/YunoHost-Apps/xbackbone_ynh.git
synced 2024-09-03 19:15:53 +02:00
fix
This commit is contained in:
parent
1c10e5c79c
commit
8efa8573d8
2 changed files with 5 additions and 4 deletions
|
@ -4,7 +4,7 @@ return [
|
||||||
'base_url' => 'https://__DOMAIN____PATH__', // no trailing slash
|
'base_url' => 'https://__DOMAIN____PATH__', // no trailing slash
|
||||||
'storage' => [
|
'storage' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'path' => '__INSTALL_DIR__/storage',
|
'path' => '__DATA_DIR__/storage',
|
||||||
],
|
],
|
||||||
'db' => [
|
'db' => [
|
||||||
'connection' => 'sqlite',
|
'connection' => 'sqlite',
|
||||||
|
|
|
@ -16,11 +16,12 @@ return array(
|
||||||
|
|
||||||
'ldap' => array(
|
'ldap' => array(
|
||||||
'enabled' => true,
|
'enabled' => true,
|
||||||
|
'schema' => 'ldap',
|
||||||
'host' => 'ldap://127.0.0.1',
|
'host' => 'ldap://127.0.0.1',
|
||||||
'port' => 389,
|
'port' => 389,
|
||||||
'base_domain' => 'dc=yunohost,dc=org',
|
'base_domain' => 'dc=yunohost,dc=org',
|
||||||
|
'search_filter' => '(&(|(objectclass=posixAccount))(uid={{username}})(permission=cn=__APP__.main,ou=permission,dc=yunohost,dc=org))',
|
||||||
'user_domain' => 'ou=Users',
|
'user_domain' => 'ou=Users',
|
||||||
'rdn_attribute' => 'uid=',
|
'rdn_attribute' => 'uid=',
|
||||||
)
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue