initial: no secrets

This commit is contained in:
2024-02-12 17:01:18 +01:00
commit cf9efd55b5
186 changed files with 8697 additions and 0 deletions
@@ -0,0 +1,26 @@
#log_format scripts '$fastcgi_path_info $document_root$fastcgi_script_name > $request';
server {
#access_log /var/log/nginx/scripts.log scripts;
include fastcgi.conf;
include fastcgi_params;
listen 8080;
index index.php index.html;
root /var/www/atlantishq-cms/public/;
location ~ \.php$ {
try_files $uri $uri/$uri/ /index.php$is_args$args =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass localhost:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
add_header X-ATHQ-HANDLER cms always;
}
location /typo3/ {
absolute_redirect off;
try_files $uri /typo3/index.php$is_args$args;
}
}
@@ -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' => '.*.*',
],
];