In the N8n dashboard when i test a webhook, the data will not be updated but the test webhook triggered. So i cant see the flow in the dashboard and cant build new workflows with the data wich is provided in the tests.
Information on your n8n setup
- n8n version: latest 0.160
- Database you’re using (default: MySQL, Redis):
- Running n8n with the execution process : Main
- Running n8n via [Docker]:
With plesk im using nginx as proxy to get serve n8n over ssl:
n8n webinterface: n8n.domain.com
n8n webhook url: webhook.n8n.domain.com
nginx config for: n8n.domain.com
//This goes to the main process // This is working!
location ~ / {
proxy_redirect off;
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-Host $server_name;
proxy_pass http://localhost:5678;
}
//This goes to the worker process (For old webhooks installed on some services) this is working!
location ~ /webhook/ {
proxy_redirect off;
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-Host $server_name;
proxy_pass http://localhost:5680;
}
nginx config for: webhook.n8n.domain.com
//Pointing to the main process // Webook gets triggered and serves data but frontend doesnt show any changes!
location ~ /webhook-test/ {
proxy_redirect off;
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-Host $server_name;
proxy_pass http://localhost:5678;
}
//This is working too!
location ~ / {
proxy_redirect off;
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-Host $server_name;
proxy_pass http://localhost:5678;
}