Describe the problem/error/question
Telegram Webhook does not work. I have been scratching for past week to get this fixed but none of the answers here for similar issue worked for. me.
Below i have set with docker environment
- WEBHOOK_URL=https://n8n.xxxxxx.in/
- WEBHOOK_TUNNEL_URL=https://n8n.xxxxxx.in
- VUE_APP_URL_BASE_API=https://n8n.xxxxxx.in/
I am using nginx proxy and config has websockets enabled. I tried with SSE it does not work.
location / {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
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;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_buffers 256 16k;
proxy_buffer_size 16k;
client_max_body_size 50m;
client_body_buffer_size 1m;
proxy_read_timeout 600s;
proxy_buffering off;
proxy_cache off;
proxy_pass http://host:port;
}
location ~ ^/(webhook|webhook-test) {
proxy_set_header Connection '';
chunked_transfer_encoding off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_buffering off;
proxy_cache off;
proxy_pass http://host:port;
}
What is the error message (if any)?
It just waits “Listening for test event” no error what so ever
Please share your workflow
It pretty simple. I added telegram message trigger and w
Share the output returned by the last node
Information on your n8n setup
- **n8n version: 1.36.1
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- **Running n8n via (Docker, npm, n8n cloud, desktop app): Docker with Nginx reverse proxy
- **Operating system: debian
I have tried this with cloud version and of course it works but it does not work with my selfhosted version.