Hi
When running Node-RED on Bluemix based on the develop-local suggested workflow by Nick, I would like to serve only the /ui path when running on the cloud and make the editor (including the login in screen unavailable)
Is this possible ?
Thanks
Peter
In theory, you can set httpAdminRoot
to false
to disable the editor and admin http api. However there is an open issue that setting it to false
currently breaks the dashboard.
Instead, you can use the following settings:
-
Disable the editor with:
disableEditor: true
-
Move the admin api away from /
:
httpAdminRoot: "/some-random-path"
-
Setup adminAuth
so even if someone does find the random path you put admin root on, they won't be able to access it.
-
Move the dashboard to be served from /
:
ui: { path: '/' }
2 Likes