- Install Node.js
- Configure Networking
- Update firewall settings
- Optimize System Resources
- Run the server with pm2
- Configure Nginx as a reverse proxy
- Install Nginx
- Enable HTTPS
Install Node.js
- Update the System:
1 | sudo apt update |
- Install Node.js:
1 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash |
- Verify the installation:
1 | node -v |
Configure Networking
By default, Node.js runs on port 3000
. Open this port in the Oracle Cloud Security List:
- Go to Networking > Virtual Cloud Networks.
- Select your VCN and click Security Lists.
- Add an ingress rule for port 3000 (or your custom port):
- Stateless: Checked
- Source Type: CIDR
- Source CIDR: 0.0.0.0/0
- IP Protocol: TCP
- Source port range: (leave-blank)
- Destination Port Range: 3000
Update firewall settings
The Ubuntu firewall is disabled by default. However, you still need to update your iptables configuration to allow HTTP traffic. Update iptables with the following commands.
1 | sudo iptables -A INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT |
The commands add a rule to allow HTTP traffic and saves the changes to the iptables configuration files.
Optimize System Resources
Increase Swap Space
1 | sudo fallocate -l 2G /swapfile |
Edit /etc/sysctl.conf
to optimize memory and network:
1 | vm.swappiness = 10 |
Apply the change:
1 | sudo sysctl -p |
Limit the memory used by Node.js:
1 | export NODE_OPTIONS="--max-old-space-size=512" |
Run the server with pm2
Install PM2 Globally:
1 | yarn global add pm2 |
Start the Application with PM2:
1 | pm2 start yarn --name "your-app-name" -- start |
Verify the Application Status:
1 | pm2 status |
Restart the application:
1 | pm2 restart your-app-name |
Stop the application:
1 | pm2 stop your-app-name |
View application logs:
1 | pm2 logs your-app-name |
Configure Nginx as a reverse proxy
1 | sudo apt install nginx |
Install Nginx
1 | sudo apt install nginx |
Create a new configuration file for your application:
1 | cd /etc/nginx/sites-available/ |
Add the following configuration:
1 | server { |
Enable the configuration by creating a symbolic link:
1 | sudo ln -s /etc/nginx/sites-available/your_app_name /etc/nginx/sites-enabled/ |
Test the Nginx configuration for syntax errors:
1 | sudo nginx -t |
If the test is successful, restart Nginx to apply the changes:
1 | sudo systemctl restart nginx |
Enable HTTPS
Update Security List to allow 443 port
Edit Ingress Rule
- Stateless: Checkek
- Source Type: CIDIR
- Source CIDR: 0.0.0.0/0
- IP Protocol: TCP
- Source Port Range: (blank)
- Destination Port Range: 443
Save changes.
Update iptables
1 | sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT |
Configure Nginx
Open /etc/nginx/sites-available/your_app_name
and Add the following:
1 | server { |
Generate a self-signed certificate: (We are going to use the SSL provided by Cloudflare, so the cerficiate here can be self-signed.)
1 | sudo mkdir -p /etc/nginx/ssl |
Automatically redirect HTTP to HTTPS:
Open /etc/nginx/sites-available/your_app_name
and Add the following:
1 | server { |
Restart Nginx:
1 | sudo systemctl restart nginx |
Update DNS server
Add a subdomain on CloudFlare to point to your Ubuntu server.
- Go to the DNS section.
- Click Add Record.
- Fill in the following details:
- Type: A (for IPv4)
- Name: Enter your subdomain.
- IPv4 Address: Enter the IP address of your server (for A record).
- Proxy status: Toggle the orange cloud to enable Cloudflare’s proxy (recommended for SSL and performance).
- Click Save.
Enable SSL with Cloudflare
- Go to the SSL/TLS Section: In your Cloudflare dashboard, go to SSL/TLS.
- Set SSL Mode to Full.