LocalConfiguration.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. 'aus_driver_amazon_s3' => [
  43. 'dnsPrefetch' => '1',
  44. 'doNotLoadAmazonLib' => '0',
  45. 'enablePermissionsCheck' => '0',
  46. ],
  47. 'backend' => [
  48. 'backendFavicon' => '',
  49. 'backendLogo' => '',
  50. 'loginBackgroundImage' => '',
  51. 'loginFootnote' => '',
  52. 'loginHighlightColor' => '',
  53. 'loginLogo' => '',
  54. ],
  55. 'extensionmanager' => [
  56. 'automaticInstallation' => '1',
  57. 'offlineMode' => '0',
  58. ],
  59. 'scheduler' => [
  60. 'maxLifetime' => '1440',
  61. 'showSampleTasks' => '1',
  62. ],
  63. ],
  64. 'FE' => [
  65. 'disableFrontend' => '1',
  66. 'debug' => false,
  67. 'disableNoCacheParameter' => true,
  68. 'passwordHashing' => [
  69. 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
  70. 'options' => [],
  71. ],
  72. ],
  73. 'GFX' => [
  74. 'processor' => 'GraphicsMagick',
  75. 'processor_allowTemporaryMasksAsPng' => false,
  76. 'processor_colorspace' => 'RGB',
  77. 'processor_effects' => false,
  78. 'processor_enabled' => true,
  79. 'processor_path' => '/usr/bin/',
  80. 'processor_path_lzw' => '/usr/bin/',
  81. ],
  82. 'LOG' => [
  83. 'TYPO3' => [
  84. 'CMS' => [
  85. 'deprecations' => [
  86. 'writerConfiguration' => [
  87. 'notice' => [
  88. 'TYPO3\CMS\Core\Log\Writer\FileWriter' => [
  89. 'disabled' => true,
  90. ],
  91. ],
  92. ],
  93. ],
  94. ],
  95. ],
  96. ],
  97. 'MAIL' => [
  98. 'transport' => 'sendmail',
  99. 'transport_sendmail_command' => '/usr/local/bin/mailhog sendmail test@example.org --smtp-addr 127.0.0.1:1025',
  100. 'transport_smtp_encrypt' => '',
  101. 'transport_smtp_password' => '',
  102. 'transport_smtp_server' => '',
  103. 'transport_smtp_username' => '',
  104. ],
  105. 'MRM' => [
  106. 'dkz' => [
  107. 'layer' => $_ENV['DKZ_LAYER'],
  108. 'pwd' => $_ENV['DKZ_PASSWORD'],
  109. 'url' => $_ENV['DKZ_URL'],
  110. 'usr' => $_ENV['DKZ_USER'],
  111. ],
  112. ],
  113. 'SYS' => [
  114. 'caching' => [
  115. 'cacheConfigurations' => [
  116. 'hash' => [
  117. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  118. ],
  119. 'imagesizes' => [
  120. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  121. 'options' => [
  122. 'compression' => true,
  123. ],
  124. ],
  125. 'pages' => [
  126. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  127. 'options' => [
  128. 'compression' => true,
  129. ],
  130. ],
  131. 'pagesection' => [
  132. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  133. 'options' => [
  134. 'compression' => true,
  135. ],
  136. ],
  137. 'rootline' => [
  138. 'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
  139. 'options' => [
  140. 'compression' => true,
  141. ],
  142. ],
  143. ],
  144. ],
  145. 'devIPmask' => '',
  146. 'displayErrors' => 0,
  147. 'encryptionKey' => '08ee39fc5214275f98470b111b1f7cf375166362a3b4ea77d3d40d3cc2ba6d158c2f72ab9ff6a33640dda114f89c42f6',
  148. 'exceptionalErrors' => 4096,
  149. 'features' => [
  150. 'felogin.extbase' => true,
  151. 'fluidBasedPageModule' => true,
  152. 'rearrangedRedirectMiddlewares' => true,
  153. 'security.backend.enforceReferrer' => false,
  154. 'unifiedPageTranslationHandling' => true,
  155. 'yamlImportsFollowDeclarationOrder' => true,
  156. ],
  157. 'reverseProxyIP' => '213.239.225.120',
  158. 'reverseProxyHeaderMultiValue' => 'last',
  159. 'reverseProxySSL' => '*',
  160. 'sitename' => 'abi2021',
  161. 'systemMaintainers' => [
  162. 1,
  163. ],
  164. 'trustedHostsPattern' => '(.*\.meramo.org|.*\.abi)\.de',
  165. ],
  166. ];