Skip to content
Snippets Groups Projects
Commit e2354d63 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Add some interesting hints to the SiteConfiguration and activate https by default

parent d1bd6bc3
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,10 @@ $typo_db_host = '127.0.0.1'; ...@@ -12,10 +12,10 @@ $typo_db_host = '127.0.0.1';
// SSL settings for the backend login // SSL settings for the backend login
// //
// Notes: // Relevant Values:
// - The value 2 is used in the live system only. It will redirect any normal http access to an https one. // - 2 - Enforce SSL
// - The value 0 is used in the testing and devel systems, because we doesn't have ssl support here!! // - 0 - Allow any
$GLOBALS['TYPO3_CONF_VARS']['BE']['lockSSL'] = 0; $GLOBALS['TYPO3_CONF_VARS']['BE']['lockSSL'] = 2;
// Change install tool password to joh316 // Change install tool password to joh316
$GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword'] = '$P$CCuX8EzzYaSOHJS5o32X9Uk3Vg79ji1'; $GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword'] = '$P$CCuX8EzzYaSOHJS5o32X9Uk3Vg79ji1';
...@@ -34,9 +34,13 @@ if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) { ...@@ -34,9 +34,13 @@ if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 1; $GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 1;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 0; $GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 0;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = 'E_ALL ^ E_NOTICE'; $GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = 'E_ALL ^ E_NOTICE';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['clearCacheSystem'] = TRUE;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = 0; $GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = 0;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = 28674; $GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = 28674;
// Don't use this in live instances as normal user may not be allowed to clear the dangerous system cache!
// Use the following setting for dedicated users/groups to give them the permission.
// options.clearCache.system = 1
$GLOBALS['TYPO3_CONF_VARS']['SYS']['clearCacheSystem'] = TRUE;
} }
?> ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment