workshop-typo3/config/system/settings.php
Daniel Siepmann 63a65e3447
INITIAL Installation
This is the initial state after setting up TYPO3 via composer.
2023-02-15 10:29:51 +01:00

122 lines
3.9 KiB
PHP

<?php
return [
'BE' => [
'debug' => true,
'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=1$V1Baa0t5eFRxcGs3REZzVQ$xLxQ4RRTNqn6tQduilmUrSurrjgZBUE+TzEWh13Wxxs',
'passwordHashing' => [
'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
'options' => [],
],
],
'DB' => [
'Connections' => [
'Default' => [
'charset' => 'utf8mb4',
'dbname' => 'typo3_workshop',
'driver' => 'mysqli',
'host' => 'localhost',
'password' => 'dev',
'tableoptions' => [
'charset' => 'utf8mb4',
'collate' => 'utf8mb4_unicode_ci',
],
'unix_socket' => '/var/run/mysqld/mysqld.sock',
'user' => 'dev',
],
],
],
'EXTENSIONS' => [
'backend' => [
'backendFavicon' => '',
'backendLogo' => '',
'loginBackgroundImage' => '',
'loginFootnote' => '',
'loginHighlightColor' => '',
'loginLogo' => '',
'loginLogoAlt' => '',
],
'extensionmanager' => [
'automaticInstallation' => '1',
'offlineMode' => '0',
],
],
'FE' => [
'cacheHash' => [
'enforceValidation' => true,
],
'debug' => true,
'disableNoCacheParameter' => true,
'passwordHashing' => [
'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
'options' => [],
],
],
'GFX' => [
'processor' => 'GraphicsMagick',
'processor_allowTemporaryMasksAsPng' => false,
'processor_colorspace' => 'RGB',
'processor_effects' => false,
'processor_enabled' => true,
'processor_path' => '/usr/bin/',
],
'LOG' => [
'TYPO3' => [
'CMS' => [
'deprecations' => [
'writerConfiguration' => [
'notice' => [
'TYPO3\CMS\Core\Log\Writer\FileWriter' => [
'disabled' => false,
],
],
],
],
],
],
],
'MAIL' => [
'transport' => 'sendmail',
'transport_sendmail_command' => '/usr/sbin/sendmail -t -i',
'transport_smtp_encrypt' => '',
'transport_smtp_password' => '',
'transport_smtp_server' => '',
'transport_smtp_username' => '',
],
'SYS' => [
'UTF8filesystem' => true,
'caching' => [
'cacheConfigurations' => [
'hash' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
],
'imagesizes' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
'pages' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
'rootline' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
],
],
'devIPmask' => '*',
'displayErrors' => 1,
'encryptionKey' => 'e59642035dd37070a3f1e80cf14cb0ff3eafb70a81211f5e7bebf57edf6a2c8161995352a332ea2680f56f319c6e1bad',
'exceptionalErrors' => 12290,
'sitename' => 'TYPO3 Workshop',
'systemMaintainers' => [
1,
],
],
];