mirror of
https://github.com/YunoHost-Apps/omeka-s_ynh.git
synced 2024-09-03 19:56:05 +02:00
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
return [
|
|
'logger' => [
|
|
'log' => false,
|
|
'priority' => \Laminas\Log\Logger::NOTICE,
|
|
],
|
|
'http_client' => [
|
|
'sslcapath' => null,
|
|
'sslcafile' => null,
|
|
],
|
|
'cli' => [
|
|
'phpcli_path' => null,
|
|
],
|
|
'thumbnails' => [
|
|
'types' => [
|
|
'large' => ['constraint' => 800],
|
|
'medium' => ['constraint' => 200],
|
|
'square' => ['constraint' => 200],
|
|
],
|
|
'thumbnailer_options' => [
|
|
'imagemagick_dir' => null,
|
|
],
|
|
],
|
|
'translator' => [
|
|
'locale' => 'en_US',
|
|
],
|
|
'service_manager' => [
|
|
'aliases' => [
|
|
'Omeka\File\Store' => 'Omeka\File\Store\Local',
|
|
'Omeka\File\Thumbnailer' => 'Omeka\File\Thumbnailer\ImageMagick',
|
|
],
|
|
],
|
|
'ldap' => [
|
|
'adapter_options' => [
|
|
'server1' => [
|
|
'host' => 'localhost',
|
|
'username' => 'ou=users,dc=yunohost,dc=org',
|
|
'password' => null,
|
|
'bindRequiresDn' => true,
|
|
'baseDn' => 'ou=users,dc=yunohost,dc=org',
|
|
'accountFilterFormat' => "(&(|(objectclass=posixAccount))(uid={{username}})(permission=cn=__APP__.main,ou=permission,dc=yunohost,dc=org))",
|
|
'accountCanonicalForm' => 4,
|
|
'accountDomainName' => 'example.com',
|
|
],
|
|
],
|
|
],
|
|
];
|