Hey Guys,
I managed to install n8n on a nVidia DGX Spark but I can not access it from my LAN, only from localhost:5678
Tried a whole day to solve it with gemini and chatgpt but no luck so far,
Has anyone accomplished that yet?
I want to be able to access n8n from my laptop and run it on the Spark.
Hey
@mARTin78 ! And welcome to n8n community!
In order for your instance to be accessible in LAN, you have to set some env variables.
If you used Docker here are some variables that need sto be added, otherwise is like you have a isolated VM.
environment:
-
N8N_HOST=DGX_LAN_IP
-
N8N_PORT=5678
-
N8N_PROTOCOL=http
-
WEBHOOK_URL=http://DGX_LAN_IP:5678
If you used npm, place thus variables in the .env file.
If you use proxy:
-
The proxy listens on the LAN (or a hostname that resolves on your LAN).
-
The proxy forwards to
http://n8n-container:5678internally, and you can still reach the proxy from your laptop.
Cheers
!
And have fun n8n-ing! ![]()