electron-node-red
electron-node-red copied to clipboard
uiHost allow external access - not working
Is there something else to do to allow external access?
I tried to remove attribute "uiHost", but no success.
I also noticed, that acces from localhost is possible via 127.0.0.1:18880/ui, but not via
Thanks a lot for help.
I had the same problem had to change the server.listen call like this:
// Start the Node-RED runtime, then load the inital dashboard page RED.start().then(function() { server.listen(listenPort,'0.0.0.0',function() { mainWindow.loadURL("http://localhost:"+listenPort+urlStart); }); });