Paul
Paul

Reputation: 55

Why should I use DDEV only for local development?

As mentioned in the documentation of TYPO3, "DDEV is used for local development only" when installing TYPO3 with DDEV. TYPO3 Docs - Installation ddev

There is not really an explanation, why I should not run DDEV and TYPO3 on a production server. So my question is, why should I use DDEV only for local development?

I used DDEV for a local TYPO3, but now I wonder if I have to install TYPO3 in a different way on the server.

Upvotes: 3

Views: 1268

Answers (1)

Kevin Appelt
Kevin Appelt

Reputation: 892

DDEV is meant to be for local development and not for use as public hosting.

Even though it is not recommended you can use it in some cases like pointed out in the official DDEV documentation.

They state:

Experimental Feature!
This is not a replacement for scalable, managed hosting. It’s unknown how much traffic it can handle in a given environment.

One of DDEV’s experimental features is lightweight hosting with Let’s Encrypt for HTTPS support. You can run DDEV on a public web server, point DNS to it, and use it as a limited hosting environment.

This may be appropriate for small or abandoned sites that have special requirements like old versions of PHP that aren’t supported elsewhere.

And there should be no need to install TYPO3 on the server itself. Instead you should consider to deploy TYPO3.

Upvotes: 5

Related Questions