omeka/local.config.php.sample

51 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2024-03-23 15:43:58 +01:00
<?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',
],
],
'mail' => [
'transport' => [
'type' => 'smtp',
'options' => [
'name' => 'customMail',
'host' => 'smtp.custom.cc',
'port' => 465, // 465 for 'ssl', and 587 for 'tls'
'connection_class' => 'plain', // 'plain', 'login', or 'crammd5'
'connection_config' => [
'username' => 'omeka@custom.cc',
'password' => 'secret',
'ssl' => 'ssl', // 'ssl' or 'tls'
'use_complete_quit' => true,
],
],
],
],
];