mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
24 lines
491 B
Nginx Configuration File
24 lines
491 B
Nginx Configuration File
events {}
|
|
|
|
http {
|
|
client_max_body_size 50M;
|
|
access_log off;
|
|
|
|
upstream backend {
|
|
server n8n_main1:5678;
|
|
server n8n_main2:5678;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_pass http://backend;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|
|
}
|