question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

n8n one-click-app doesn't work out of the box

See original GitHub issue

n8n has special needs from its reverse proxy for the communication between the webapp and the server. The following nginx config makes it work right.

            proxy_pass $upstream;
            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 Connection '';
            proxy_http_version 1.1;
            chunked_transfer_encoding off;
            proxy_buffering off;
            proxy_cache off;

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:25 (6 by maintainers)

github_iconTop GitHub Comments

2reactions
melaljcommented, Sep 25, 2020

@mikeriss Had a similar issue, and made it work with the following steps:

  1. Edited the nginx configation (per @sneak initial comment)
  2. Edited environment variables:
WEBHOOK_TUNNEL_URL=https://YOUR_DOMAIN/ # you remote public domain
VUE_APP_URL_BASE_API=http://srv-captain--n8n:5678 # with local domain
N8N_HOST=srv-captain--n8n # with local domain
1reaction
alexander-potemkincommented, Mar 3, 2021

It seems that it does now work out of the box, so reference to this ticket from the installation, probably, shall be removed.

Read more comments on GitHub >

github_iconTop Results From Across the Web

First Workflow: Trouble with ClickUp Trigger - Questions - n8n
Under the Events dropdown, I have tried both * and list.created . I then save the workflow, click Execute Node, and add a...
Read more >
Technology - OneClickApp.com
This mature, industry-leading tool gives Chick-fil-A® leaders and team members the ability to simplify their jobs with one simple click.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found