Kue UI (Express) 平行于 Hapi.JS API-Server

Kue UI (Express) parallel to Hapi.JS API-Server

我想将 Kue (https://github.com/Automattic/kue) 的 UI 与我的 Hapi.js 应用程序并行使用。

Kui UI 是用 Express 构建的。

Hapi 和 Express 正在我的 heroku dyno 上侦听端口 80。

我该怎么做?有人可以给我举个例子吗?

post 缺少一些细节,但我想我明白你想要什么。我假设这两个服务 运行 在同一个 IP@ 上,所以你显然不能在端口 80 上同时拥有它们。

我认为一个可能的解决方案是在另一个端口(比如 4080)上启动 kue 并让 hapi.js 代理到 kue 服务器的 kue 路由。

相关文档部分是here (look for the proxy option). There is a sample here

希望我答对了你的问题。