n8n Cluster Setup with Hetzner Load Balancer, PostgreSQL Failover, and Cloudflare SSL
Introduction
Setting up a highly available n8n cluster requires load balancing, database redundancy, and secure connections. This guide covers deploying n8n on Hetzner cloud servers, configuring a Hetzner Load Balancer, setting up PostgreSQL failover, and securing traffic with Cloudflare SSL.
1. Why Use a Cluster Setup for n8n?
A clustered n8n setup ensures:
- Scalability: Distributes workload across multiple nodes
- High Availability: Prevents downtime with failover mechanisms
- Security: Protects traffic with Cloudflare SSL and HTTPS enforcement
2. Deploying n8n on Hetzner Cloud
To start, deploy multiple Hetzner cloud instances:
- 2 VMs for n8n with Docker Compose
- 2 VMs for PostgreSQL with automatic failover
Steps:
- Create four Hetzner Cloud VMs with Ubuntu 22.04
- Install Docker and Docker Compose on two VMs for n8n
- Install PostgreSQL with failover on two database VMs
Deploying n8n using Docker Compose
docker run -d --name n8n -p 5678:5678 -v ~/.n8n:/home/node/.n8n n8nio/n8n
Setting up PostgreSQL with Failover
On the first PostgreSQL VM:
sudo apt update && sudo apt install postgresql
Configure replication and enable failover monitoring.
On the second PostgreSQL VM:
sudo apt install postgresql
Sync it with the primary server for automatic failover.
3. Configuring Hetzner Load Balancer
To distribute traffic across n8n nodes:
- Navigate to Hetzner Cloud Console → Load Balancers
- Create a new Load Balancer
- Add both n8n instances as backend targets
- Configure health checks to monitor service availability:
http://your-n8n-server-ip:5678/healthz
- Enable Sticky Sessions for consistent user experience.
4. Securing Traffic with Cloudflare SSL
Prerequisites:
- A top-level domain (e.g., example.com)
- Hetzner DNS zone setup
- A Hetzner Load Balancer
Step 1 - Creating the Hetzner DNS Zone
- Go to dns.hetzner.com
- Add your domain name
- Disable automatic scanning
- Delete unnecessary default records
Step 2 - External DNS Configuration
To use Let’s Encrypt certificates with an external DNS provider:
- Add NS records at your external DNS hoster:
_acme-challenge.example.com IN NS hydrogen.ns.hetzner.com.
- Repeat this for all Hetzner DNS servers.
Step 3 - Setting up SSL in Hetzner Load Balancer
- Open Hetzner Cloud Console
- Navigate to Load Balancer → Services
- Click Add service → TLS Termination
- Select + Add certificates → Create Certificate
- Choose your Hetzner DNS zone and enable wildcard SSL
Type Name Value
A ssl.example.com <load-balancer-ip>
Step 4 - Enforcing HTTPS
- Set up Cloudflare Full (Strict) SSL
- Configure WAF rules to block unauthorized access
Example Cloudflare WAF rule:
{
"action": "block",
"conditions": [
{
"field": "http.request.uri.path",
"operator": "contains",
"value": "/admin"
}
]
}
5. Running n8n in Production with Load Balancing
Once configured, verify load balancing and SSL:
curl -I https://your-n8n-domain.com
This should return a valid HTTPS response from Cloudflare.
Final Thoughts
Setting up an n8n cluster with Hetzner Load Balancer, PostgreSQL failover, and Cloudflare SSL ensures a robust, scalable automation infrastructure. With this setup:
- Traffic is evenly distributed across multiple n8n nodes
- Cloudflare SSL protects all connections with HTTPS
- PostgreSQL failover ensures high availability
If you’re scaling n8n automation, this guide provides a secure and scalable framework. Have questions? Drop them in the comments!