Describe the problem/error/question
Connection lost on self hosted n8n. I keep getting this issue :
url/rest/push?pushRef=txrzy1d5i1 500 (Internal Server Error)
The latest version that works with no disconnections is 1.86.1
What is the error message (if any)?
Connection lost
Share the output returned by the last node
Information on your n8n setup
sudo docker run -d --restart unless-stopped -it \
–name n8n \
-p 5678:5678 \
-e N8N_HOST=“” \
-e WEBHOOK_TUNNEL_URL=“url” \
-e WEBHOOK_URL=“url” \
-e N8N_PUSH_BACKEND=sse \
-e N8N_PROXY_HOPS=1 \
-e N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true \
-v ~/.n8n:/root/.n8n \
n8nio/n8n:1.86.1
Nginx setting
server {
listen 80;
server_name “url”;
location / {
proxy_pass http://localhost:5678;
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
proxy_set_header Host $host;
}
}