hey guys,
i have some issue which i am not able to debug
I used docker to run n8n and i am using nginx and certmanager for proxy and excrpting
the issue i am facing is that ui is not updating for anything i tested so far,
the executions are happening and i am getting data and sending data but ui is not updating at all
Can someone help me debug this issue?
version: 1.32.2
It is just listening to payload for eternity
Share the output returned by the last node
Information on your n8n setup
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
Welcome to the community @PARTH_CHAWLA !
Did you follow one of our server setup guides?
Hey @Akshat_Rana,
Looking at that guide the nginx config isn’t set to support websockets, I would recommend updating this or following one of our official guides using Caddy or Traefik instead.
Can you link me with any reference to setup with websockets.
Edit: Never mind, fixed this issue. Finally found a reference to this Docker, nginx, n8n - needs proxy connection upgrade for websockets - else UX fails - Tips & Tricks - n8n
My current config now
location / {
proxy_set_header Connection ‘upgrade’;
proxy_set_header Upgrade $http_upgrade;
proxy_pass http://localhost:5678;
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
}