Skip to content

Instantly share code, notes, and snippets.

@ziadabdulhai
ziadabdulhai / Convert-to-secure-web
Last active March 4, 2020 11:46
TYPO3 Meetup München 03.03.3020 - Sicheres TYPO3-Webverzeichnis mit helhum/typo3-secure-web
mkdir private &&
ddev composer config extra.typo3/cms.root-dir private &&
ddev composer config extra.typo3/cms.web-dir public &&
ddev composer require helhum/typo3-secure-web &&
mv public/typo3conf/{AdditionalConfiguration.php,LocalConfiguration.php,PackageStates.php} private/typo3conf &&
cp -r public/fileadmin/ private/fileadmin && rm -rf public/fileadmin/ && cd public && ln -s ../private/fileadmin fileadmin && cd .. &&
rm -rf public/typo3temp/* && cd public/typo3temp && ln -s ../../private/typo3temp/assets assets && cd ../..