Lost connection or the server is down

Hi all,

I’ve been building a workflow that incorporates WhatsApp and Telegram nodes, but in the past couple of days, I’ve begun to notice some errors.

I’ve checked my credentials to make sure that they’re correct, and I’m currently using an n8n Cloud subscription. I’ve tried to troubleshoot the issue with the n8n AI tool, but I haven’t been able to figure out what the problem is yet.

Has anyone else noticed some issues with these particular nodes? I’m trying to figure out whether this is a known issue in the environment or whether there’s something particular to my setup that I may have missed.

1 Like

@terivi if you are using self hosted version of n8n add this configuration in nginx and it should work.

location / {

proxy_pass http://127.0.0.1:5678;

proxy_http_version 1.1;

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection "upgrade";

proxy_set_header Host $http_host;

proxy_set_header Origin $scheme://$http_host;

proxy_cache off;

proxy_buffering off;

proxy_read_timeout 86400;

}

Hope this helps!

2 Likes

@terivi What’s interesting is that this problem can also be created by your system clock being desynchronized. If your PC’s clock isn’t the same as the server’s, your WhatsApp and Telegram authentication tokens won’t work.

If you’re experiencing this problem, you can try Windows Network Diagnostics and then manually sync your system clock in the Date & Time settings. It’s an easy fix that could save you hours of headaches!

Kindly mark me as the solution if i helped!

3 Likes

Hi @terivi I was also having workspace offline sometimes but it usually gets fixed automatically in 5-8s what i would recommend is that you should navigate to the cloud admin panel and try restarting your n8n instance from there, let me know if that works.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.