默认情况下,Node-RED仪表板UI位于http://example.com:1880/ui路由上,而Node-RED编辑器位于http://example.com/上。
我想将Dashboard UI移至http://example.com/,并将编辑器移至另一路径。
答案 0 :(得分:1)
可以通过编辑Node-RED用户目录(通常为〜/ .node-red)中的settings.js
文件来实现
取消注释httpAdmnRoot
键
// By default, the Node-RED UI is available at http://localhost:1880/
// The following property can be used to specifiy a different root path.
// If set to false, this is disabled.
httpAdminRoot: '/admin',
并取消注释和编辑ui
条目:
// If you installed the optional node-red-dashboard you can set it's path
// relative to httpRoot
ui: { path: "/" },
重新启动Node-RED之后,编辑器将位于http://example.com:1880/admin上,并且仪表板UI将位于http://example.com:1880/