LocalConfiguration.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?php
  2. // Read the .env file and add its values to globals:
  3. $dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
  4. // You cannot use getenv() to request the variables from .env file because getenv() is unsafe!
  5. // If you have to use getenv() replace the above 'initializer' with:
  6. // $dotenv = Dotenv\Dotenv::createMutable(__DIR__);
  7. $dotenv->safeLoad();
  8. return [
  9. 'BE' => [
  10. 'debug' => false,
  11. 'explicitADmode' => 'explicitAllow',
  12. 'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=1$dkhoTUouM3V0OUUySTBldQ$YwvvC9JLfXUCNmoMrL4eDQptv/LNTt1g/wUpVjIxCwk',
  13. 'loginSecurityLevel' => 'normal',
  14. 'passwordHashing' => [
  15. 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
  16. 'options' => [],
  17. ],
  18. ],
  19. 'DB' => [
  20. 'Connections' => [
  21. 'Default' => [
  22. 'charset' => 'utf8mb4',
  23. 'dbname' => $_ENV['BE_DATABASE'],
  24. 'driver' => 'mysqli',
  25. 'host' => $_ENV['BE_DATABASE_HOST'],
  26. 'password' => $_ENV['BE_DATABASE_PASSWORD'],
  27. 'port' => 3306,
  28. 'tableoptions' => [
  29. 'charset' => 'utf8mb4',
  30. 'collate' => 'utf8mb4_unicode_ci',
  31. ],
  32. 'user' => $_ENV['BE_DATABASE_USER'],
  33. ],
  34. ],
  35. ],
  36. 'EXTCONF' => [
  37. 'helhum-typo3-console' => [
  38. 'initialUpgradeDone' => '10.4',
  39. ],
  40. ],
  41. 'EXTENSIONS' => [
  42. 'backend' => [
  43. 'backendFavicon' => '',
  44. 'backendLogo' => '',
  45. 'loginBackgroundImage' => '',
  46. 'loginFootnote' => '',
  47. 'loginHighlightColor' => '',
  48. 'loginLogo' => '',
  49. ],
  50. 'extensionmanager' => [
  51. 'automaticInstallation' => '1',
  52. 'offlineMode' => '0',
  53. ],
  54. ],
  55. 'FE' => [
  56. 'debug' => false,
  57. 'disableNoCacheParameter' => true,
  58. 'passwordHashing' => [
  59. 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
  60. 'options' => [],
  61. ],
  62. ],
  63. 'GFX' => [
  64. 'processor' => 'GraphicsMagick',
  65. 'processor_allowTemporaryMasksAsPng' => false,
  66. 'processor_colorspace' => 'RGB',
  67. 'processor_effects' => false,
  68. 'processor_enabled' => true,
  69. 'processor_path' => '/usr/bin/',
  70. 'processor_path_lzw' => '/usr/bin/',
  71. ],
  72. 'LOG' => [
  73. 'TYPO3' => [
  74. 'CMS' => [
  75. 'deprecations' => [
  76. 'writerConfiguration' => [
  77. 'notice' => [
  78. 'TYPO3\CMS\Core\Log\Writer\FileWriter' => [
  79. 'disabled' => true,
  80. ],
  81. ],
  82. ],
  83. ],
  84. ],
  85. ],
  86. ],
  87. 'MAIL' => [
  88. 'transport' => 'sendmail',
  89. 'transport_sendmail_command' => '/usr/local/bin/mailhog sendmail test@example.org --smtp-addr 127.0.0.1:1025',
  90. 'transport_smtp_encrypt' => '',
  91. 'transport_smtp_password' => '',
  92. 'transport_smtp_server' => '',
  93. 'transport_smtp_username' => '',
  94. ],
  95. 'MRM' => [
  96. 'dkz' => [
  97. 'layer' => $_ENV['DKZ_LAYER'],
  98. 'pwd' => $_ENV['DKZ_PASSWORD'],
  99. 'url' => $_ENV['DKZ_URL'],
  100. 'usr' => $_ENV['DKZ_USER'],
  101. ],
  102. ],
  103. 'SYS' => [
  104. 'caching' => [
  105. 'cacheConfigurations' => [
  106. 'hash' => [
  107. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  108. ],
  109. 'imagesizes' => [
  110. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  111. 'options' => [
  112. 'compression' => true,
  113. ],
  114. ],
  115. 'pages' => [
  116. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  117. 'options' => [
  118. 'compression' => true,
  119. ],
  120. ],
  121. 'pagesection' => [
  122. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  123. 'options' => [
  124. 'compression' => true,
  125. ],
  126. ],
  127. 'rootline' => [
  128. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  129. 'options' => [
  130. 'compression' => true,
  131. ],
  132. ],
  133. ],
  134. ],
  135. 'devIPmask' => '',
  136. 'displayErrors' => 0,
  137. 'encryptionKey' => '08ee39fc5214275f98470b111b1f7cf375166362a3b4ea77d3d40d3cc2ba6d158c2f72ab9ff6a33640dda114f89c42f6',
  138. 'exceptionalErrors' => 4096,
  139. 'features' => [
  140. 'felogin.extbase' => true,
  141. 'fluidBasedPageModule' => true,
  142. 'rearrangedRedirectMiddlewares' => true,
  143. 'unifiedPageTranslationHandling' => true,
  144. 'yamlImportsFollowDeclarationOrder' => true,
  145. 'security.backend.enforceReferrer' => false,
  146. ],
  147. 'sitename' => 'abi2021',
  148. 'systemMaintainers' => [
  149. 1,
  150. ],
  151. 'trustedHostsPattern' => '.*',
  152. ],
  153. ];