| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- // Read the .env file and add its values to globals:
- $dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
- // You cannot use getenv() to request the variables from .env file because getenv() is unsafe!
- // If you have to use getenv() replace the above 'initializer' with:
- // $dotenv = Dotenv\Dotenv::createMutable(__DIR__);
- $dotenv->safeLoad();
- return [
- 'BE' => [
- 'debug' => false,
- 'explicitADmode' => 'explicitAllow',
- 'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=1$dkhoTUouM3V0OUUySTBldQ$YwvvC9JLfXUCNmoMrL4eDQptv/LNTt1g/wUpVjIxCwk',
- 'loginSecurityLevel' => 'normal',
- 'passwordHashing' => [
- 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
- 'options' => [],
- ],
- ],
- 'DB' => [
- 'Connections' => [
- 'Default' => [
- 'charset' => 'utf8mb4',
- 'dbname' => $_ENV['BE_DATABASE'],
- 'driver' => 'mysqli',
- 'host' => $_ENV['BE_DATABASE_HOST'],
- 'password' => $_ENV['BE_DATABASE_PASSWORD'],
- 'port' => 3306,
- 'tableoptions' => [
- 'charset' => 'utf8mb4',
- 'collate' => 'utf8mb4_unicode_ci',
- ],
- 'user' => $_ENV['BE_DATABASE_USER'],
- ],
- ],
- ],
- 'EXTCONF' => [
- 'helhum-typo3-console' => [
- 'initialUpgradeDone' => '10.4',
- ],
- ],
- 'EXTENSIONS' => [
- 'backend' => [
- 'backendFavicon' => '',
- 'backendLogo' => '',
- 'loginBackgroundImage' => '',
- 'loginFootnote' => '',
- 'loginHighlightColor' => '',
- 'loginLogo' => '',
- ],
- 'extensionmanager' => [
- 'automaticInstallation' => '1',
- 'offlineMode' => '0',
- ],
- 'scheduler' => [
- 'maxLifetime' => '1440',
- 'showSampleTasks' => '1',
- ],
- ],
- 'FE' => [
- 'debug' => false,
- '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/',
- 'processor_path_lzw' => '/usr/bin/',
- ],
- 'LOG' => [
- 'TYPO3' => [
- 'CMS' => [
- 'deprecations' => [
- 'writerConfiguration' => [
- 'notice' => [
- 'TYPO3\CMS\Core\Log\Writer\FileWriter' => [
- 'disabled' => true,
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- 'MAIL' => [
- 'transport' => 'sendmail',
- 'transport_sendmail_command' => '/usr/local/bin/mailhog sendmail test@example.org --smtp-addr 127.0.0.1:1025',
- 'transport_smtp_encrypt' => '',
- 'transport_smtp_password' => '',
- 'transport_smtp_server' => '',
- 'transport_smtp_username' => '',
- ],
- 'MRM' => [
- 'dkz' => [
- 'layer' => $_ENV['DKZ_LAYER'],
- 'pwd' => $_ENV['DKZ_PASSWORD'],
- 'url' => $_ENV['DKZ_URL'],
- 'usr' => $_ENV['DKZ_USER'],
- ],
- ],
- 'SYS' => [
- '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,
- ],
- ],
- 'pagesection' => [
- 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
- 'options' => [
- 'compression' => true,
- ],
- ],
- 'rootline' => [
- 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
- 'options' => [
- 'compression' => true,
- ],
- ],
- ],
- ],
- 'devIPmask' => '',
- 'displayErrors' => 0,
- 'encryptionKey' => '08ee39fc5214275f98470b111b1f7cf375166362a3b4ea77d3d40d3cc2ba6d158c2f72ab9ff6a33640dda114f89c42f6',
- 'exceptionalErrors' => 4096,
- 'features' => [
- 'felogin.extbase' => true,
- 'fluidBasedPageModule' => true,
- 'rearrangedRedirectMiddlewares' => true,
- 'unifiedPageTranslationHandling' => true,
- 'yamlImportsFollowDeclarationOrder' => true,
- 'security.backend.enforceReferrer' => false,
- ],
- 'sitename' => 'abi2021',
- 'systemMaintainers' => [
- 1,
- ],
- 'trustedHostsPattern' => '.*',
- ],
- ];
|