fix: add typo3-settings

This commit is contained in:
2023-01-18 19:15:55 +01:00
parent f8b3b8ab40
commit 36fac310c8
2 changed files with 108 additions and 0 deletions

View File

@@ -96,3 +96,8 @@
src: default-nginx.conf src: default-nginx.conf
dest: /etc/nginx/sites-available/default dest: /etc/nginx/sites-available/default
notify: restart nginx notify: restart nginx
- name: Configure typo3
template:
src: typo3-settings.php
dest: /var/www/atlantishq-cms/config/system/settings.php

View File

@@ -0,0 +1,103 @@
<?php
return [
'BE' => [
'debug' => true,
'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=1$cFhzV25oZ1o2REZQYk9NUQ$OpTaCKkPonhdJs+OYn72vVPoJ4h5VwDGxcd/3M5VsyY',
'passwordHashing' => [
'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
'options' => [],
],
],
'DB' => [
'Connections' => [
'Default' => [
'driver' => 'pdo_sqlite',
'path' => '/var/www/atlantishq-cms/var/sqlite/cms-0700a973.sqlite',
],
],
],
'EXTENSIONS' => [
'backend' => [
'backendFavicon' => '',
'backendLogo' => '',
'loginBackgroundImage' => '',
'loginFootnote' => '',
'loginHighlightColor' => '',
'loginLogo' => '',
'loginLogoAlt' => '',
],
'extensionmanager' => [
'automaticInstallation' => '1',
'offlineMode' => '0',
],
],
'FE' => [
'debug' => true,
'passwordHashing' => [
'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash',
'options' => [],
],
],
'LOG' => [
'TYPO3' => [
'CMS' => [
'deprecations' => [
'writerConfiguration' => [
'notice' => [
'TYPO3\CMS\Core\Log\Writer\FileWriter' => [
'disabled' => false,
],
],
],
],
],
],
],
'MAIL' => [
'transport' => 'sendmail',
'transport_sendmail_command' => '/usr/sbin/sendmail -t -i',
'transport_smtp_encrypt' => '',
'transport_smtp_password' => '',
'transport_smtp_server' => '',
'transport_smtp_username' => '',
],
'SYS' => [
'features' => [
'security.backend.enforceReferrer' => false
],
'caching' => [
'cacheConfigurations' => [
'hash' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
],
'imagesizes' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
'pages' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
'rootline' => [
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\Typo3DatabaseBackend',
'options' => [
'compression' => true,
],
],
],
],
'devIPmask' => '',
'displayErrors' => 0,
'encryptionKey' => 'ec657040986d5104b1f84564578f5df3bffd7049a9a58e0c86a05232899be6ef8987c268895a45822e34ede03dc1f1c4',
'exceptionalErrors' => 4096,
'sitename' => 'cms',
'systemMaintainers' => [
1,
],
'trustedHostsPattern' => '.*.*',
],
]