TYPO3 CMS  TYPO3_7-6
FactoryConfiguration.php
Go to the documentation of this file.
1 <?php
8 return [
9  'BE' => [
10  'explicitADmode' => 'explicitAllow',
11  'loginSecurityLevel' => 'rsa',
12  ],
13  'EXT' => [
14  'extConf' => [
15  'rsaauth' => 'a:1:{s:18:"temporaryDirectory";s:0:"";}',
16  'saltedpasswords' => serialize([
17  'BE.' => [
18  'saltedPWHashingMethod' => \TYPO3\CMS\Saltedpasswords\Salt\PhpassSalt::class,
19  'forceSalted' => 0,
20  'onlyAuthService' => 0,
21  'updatePasswd' => 1,
22  ],
23  'FE.' => [
24  'enabled' => 1,
25  'saltedPWHashingMethod' => \TYPO3\CMS\Saltedpasswords\Salt\PhpassSalt::class,
26  'forceSalted' => 0,
27  'onlyAuthService' => 0,
28  'updatePasswd' => 1,
29  ],
30  ]),
31  ],
32  ],
33  'FE' => [
34  'loginSecurityLevel' => 'rsa',
35  'enableRecordRegistration' => false,
36  'cHashIncludePageId' => true,
37  ],
38  'GFX' => [
39  'jpg_quality' => '80',
40  ],
41  'SYS' => [
42  'isInitialInstallationInProgress' => true,
43  'isInitialDatabaseImportDone' => false,
44  'sitename' => 'New TYPO3 site',
45  ],
46 ];