How I deploy my production stack on VPS

We can deploy applications to VPS / Cloud Instances to avail it in the public internet. When deploying for production we need some standard practices to ensure application is easy to manage. Some of the feature to consider are: Auto TLS Easy image building and deployment Rolling updates Rollback when needed Preparing VPS for deployment Setup a brand new VPS with SSH and Necessary settings example Install Docker on VPS ssh into VPS using ssh vps1.example.com install docker curl -fsSL https://get.docker.com | sudo sh Setting up Docker Context We can use docker context to configure docker client to connect to the VPS. We can create a context using: ...

How I Setup a brand new VPS

VPS or A Cloud Server will come with basic OS setup. Here are some of my basic practices getting started with setting up a VPS for deploying applications. Setting up SSH Keys Create SSH Keys on local machine ssh-keygen -t ecdsa -f ~/.ssh/id_rsa_vps Copy SSH Keys to VPS ssh-copy-id -i ~/.ssh/id_rsa_vps.pub username@ip Add ~/.ssh/config entry for easy access cat ~/.ssh/config Host vps1 HostName ip User username IdentityFile ~/.ssh/id_rsa_vps ServerAliveInterval 240 (Optional) Disable password authentication ...