3 questions for a better understanding #4
-
I have 3 questions for you and would be very grateful if you could answer them: 1): Do I understand correctly that for a new project, after the first deployment to the live server, you have to copy the database and media files "by hand" to the live server? 2): I would like to use the extension "helhum/typo3-secure-web" to increase the security of my TYPO3 installations. However, this extension moves some folders and creates symlinks instead. Do you have experience with this extension? Would your deployment scripts break, or is your extension compatible with the extension "helhum/typo3-secure-web"? 3): I would like to keep the deployer.php file free of all project specific information (like hostname, public_urls, etc.) so that I can put it in Git and reuse it in all projects. If I use the .env file for this purpose, it would mean that I would have to enter the information about the beta server and the live server in the local .env file, which would also not be ideal. Maybe the extension "helhum/typo3-config-handling" would be a solution for this problem. Unfortunately I have no experience with this yet. Thanks again for your great work! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
hi no problem - here are the answers: ad1) For new projects I install it at once at customer server so I do not have a big pressure to use the ad2) Yes. I tested this extension but do not use it because IMO "standard" way of TYPO3 install is secure enough. I did not tested if ad3) b) My current approach for keeping instance dependent variables is to keep as much as possible in git except passwords only. The The |
Beta Was this translation helpful? Give feedback.
hi
no problem - here are the answers:
ad1) For new projects I install it at once at customer server so I do not have a big pressure to use the
dep media:push live
ordep db:push live
. I use those commands only sometimes when customer had yet no server and the project must start already on some other server (or locally). Later we mostly do not use this commands anymore because we only pull database from upper instances: live -> prelive, live -> beta, live->local.ad2) Yes. I tested this extension but do not use it because IMO "standard" way of TYPO3 install is secure enough. I did not tested if
sourcebroker/deployer-extended-typo3
works withhelhum/typo3-secure-web
.ad3)
a) I do not believ…