DEV Community

Discussion on: Manage a multiple websites server with Docker Compose, NGINX and auto SSL certificates

Collapse
 
dennislwm profile image
dennislwm • Edited

Good article. I have done something similar to you, but with Terraform-Docker-Compose-Caddy-LetsEncrypt.
Terraform is “infrastructure as code” used to deploy resources instantly on cloud engines.
Docker-compose is “containerized” apps running on these resources.
Caddy is used to automate reverse-proxy on HTTPS.
Terraform is great for scaling resources up or down with minimal server downtime. Creating a side project is literally just copy and paste a module in Terraform. Regards.
URL: github.com/dennislwm/dscode

Collapse
 
steeve profile image
Steeve

The main issue of the project I'm using is the scaling, I don't find a quick solution. I will try your project and the technologies you are sharing with me.
Thank you, I appreciate your comment!