如何更改Node-RED仪表板的路径

时间:2019-02-26 12:37:07

标签: iot node-red

默认情况下,Node-RED仪表板UI位于http://example.com:1880/ui路由上,而Node-RED编辑器位于http://example.com/上。

我想将Dashboard UI移至http://example.com/,并将编辑器移至另一路径。

1 个答案:

答案 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/