Hello
I’ve set up n8n community version on my Hostinger VPS. I am following a beginner’s step by step tutorial and am stuck at the very first stage! The trigger is an n8n form with three field inputs. When I try to test the node, it’s saying it’s listening but no test form appears into which to type some test data. There’s no error message.
I’m accessing n8n via my reverse proxy from Windows 11 Pro using MS Edge browser.
(I have successfully completed the little quickstart “NASA” workflow)
Any ideas or pointers?
TIA.
This localhost address only works inside the Docker container — not from your local machine. Since you’re accessing n8n via a domain (through a reverse proxy), you need to tell n8n what its public URL is, so it generates correct webhook and form trigger links.
To fix, set WEBHOOK_URL in your Docker setup
Since you’re using Docker, you should add this environment variable to your Docker container config:
WEBHOOK_URL=https://yourdomain.com
Replace https://yourdomain.com with the actual domain you’re using to access n8n through your browser.
If you’re using Docker Compose, your docker-compose.yml might look like this: