Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deployer/feature/task/feature_setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ function renderRemoteTemplates(): void
'DEPLOYER_CONFIG_FEATURE_NAME' => (string)$feature,
'DEPLOYER_CONFIG_FEATURE_URL' => get('public_urls')[0],
'DEPLOYER_CONFIG_FEATURE_PATH' => $featurePath,
'DEPLOYER_CONFIG_ENCRYPTION_KEY' => bin2hex(random_bytes(48)),
],
$additionalTemplateVariables)
;
Expand Down
2 changes: 1 addition & 1 deletion deployer/typo3/example/deployer/templates/.env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TYPO3_CONF_VARS__DB__Connections__Default__user={{DEPLOYER_CONFIG_DATABASE_USER}
TYPO3_CONF_VARS__DB__Connections__Default__dbname={{DEPLOYER_CONFIG_DATABASE_NAME}}

# Secret Encryption Key
TYPO3_CONF_VARS__SYS__encryptionKey='kjasdf980uhIUOJHgh908DAGUSDHCAG78OSDFHIA<BS98ogu>ypO'
TYPO3_CONF_VARS__SYS__encryptionKey='{{DEPLOYER_CONFIG_ENCRYPTION_KEY}}'

# TYPO3s compression is unnecessary and error-prone
TYPO3_CONF_VARS__FE__compressionLevel=0
Expand Down