home-network/_share/data/nginx/n8n.conf

14 lines
338 B
Text
Raw Normal View History

2025-04-09 08:53:53 +03:00
server {
listen 80;
server_name n8n.ronnyabraham.com;
location / {
proxy_pass http://localhost:5678;
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;
}
}