TYPO3  7.6
FactoryConfiguration.php
Go to the documentation of this file.
1 <?php
8 return array(
9  'BE' => array(
10  'explicitADmode' => 'explicitAllow',
11  'loginSecurityLevel' => 'rsa',
12  ),
13  'EXT' => array(
14  'extConf' => array(
15  'rsaauth' => 'a:1:{s:18:"temporaryDirectory";s:0:"";}',
16  'saltedpasswords' => serialize(array(
17  'BE.' => array(
18  'saltedPWHashingMethod' => \TYPO3\CMS\Saltedpasswords\Salt\PhpassSalt::class,
19  'forceSalted' => 0,
20  'onlyAuthService' => 0,
21  'updatePasswd' => 1,
22  ),
23  'FE.' => array(
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' => array(
34  'loginSecurityLevel' => 'rsa',
35  ),
36  'GFX' => array(
37  'jpg_quality' => '80',
38  ),
39  'SYS' => array(
40  'isInitialInstallationInProgress' => true,
41  'isInitialDatabaseImportDone' => false,
42  'sitename' => 'New TYPO3 site',
43  ),
44 );