LocalConfiguration.php 5.8 KB

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