If you're working with multiple Next.js applications and want to host them all on a single virtual machine (VM) while assigning different domains or subdomains to each, this guide is for you. We'll walk through setting up PM2, Nginx, domain pointing, and even HTTPS using Let's Encrypt.
๐งฑ Step 1: Set Up Each Next.js Application
1. Build Each App
First, navigate to each app directory and build it for production:
2. Manage Your Apps Using PM2
Create an ecosystem.config.js
file to manage your apps:
Start all apps using PM2:
๐ Step 2: Install and Configure Nginx
1. Install Nginx
2. Create Nginx Configuration for Each Domain
Create a configuration file for each app in /etc/nginx/sites-available/
.
Example: app1.yourdomain.com
Repeat the same for other domains like app2.yourdomain.com
and app3.yourdomain.com
using the corresponding ports.
3. Enable the Sites
4. Test and Restart Nginx
๐ Step 3: Point Your Domains to the VM
Log in to your domain provider (e.g., GoDaddy, Namecheap) and update the DNS records:
Add A records for each subdomain, pointing to the public IP of your VM.
๐ Step 4: Enable SSL with Let's Encrypt (Recommended)
1. Install Certbot
2. Obtain SSL Certificates
Follow the prompts to complete the setup.
3. Test Renewal (Optional)
✅ Done!
Now you have multiple Next.js apps running on a single VM, each served on a custom domain with HTTPS. Nginx handles the routing via reverse proxy, while PM2 keeps your apps alive and running in the background.