n8n v1 uses by default WebSockets, the previous default was ServerSent Events. So setting it temporarily back again to SSE will fix the issue but at some point, the underlying issue has to get solved (the reverse proxy probably needs to be configured accordingly) as we have planned to deprecate SSE in the future.
Hey @jan , I thought it was my nginx settings as well but I compared my settings to the ones posted in this forums and they seems to match, here is my conf file:
server {
server_name {{my_url}};
location / {
proxy_pass http://127.0.0.1:5678; # ip address and port of dockerized n8n
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
}
listen 443 ssl; # managed by Certbot
listen [::]:443 ssl;
ssl_certificate /etc/letsencrypt/live/{{my_url}}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{my_url}}/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;