如何设置 Apache ProxyPass 以保留 Express 路由
How to set up Apache ProxyPass to preserve Express routes
在我的 Apache 配置中,我将 /node
上的所有流量转发到 Express 服务器正在侦听的端口 3000
。
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyPass /node http://localhost:3000/
</IfModule>
Express 应用如下所示:
var express = require('express');
var app = express();
var router = express.Router();
router.route('/route/:id').get(function (req, res) {
res.json({ description: 'Welcome to a route with an ID' });
});
router.route('/route').get(function (req, res) {
res.json({ description: 'Welcome to the normal route' });
});
router.route('/').get(function (req, res) {
res.json({ data: 'Welcome to the app' });
});
app.use('/', router);
app.listen(3000);
当我将浏览器指向 http://myserver.com/node I get the response { data: 'Welcome to the app' }
, which is fine. Though, when I try to go http://myserver.com/node/route or http://myserver.com/node/1210 时,出现错误 Cannot GET //route
。
知道如何更新我的 Apache 配置以保留 Express 路由吗?
我是 运行 CentOS 上的 Apache 2.4.6。
您的主机末尾有一个额外的 /
。尝试将其更改为:
ProxyPass /node http://localhost:3000
在使用我的 nodejs 后端系统在 apache 2 服务器上设置虚拟主机后,我遇到了同样的问题,这是我修复它的方法:
ProxyRequests On
ProxyVia Full
ProxyPreserveHost on
ProxyPass /api http://jwappengine.com:7000
ProxyPass /secure http://jwappengine.com:1442
ProxyPass /host https://jwappengine.com:1400
ProxyPass /connect/v1 https://jwappengine.com:1400
ProxyPass /payment https://jwappengine.com:3000
在我的 Apache 配置中,我将 /node
上的所有流量转发到 Express 服务器正在侦听的端口 3000
。
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyPass /node http://localhost:3000/
</IfModule>
Express 应用如下所示:
var express = require('express');
var app = express();
var router = express.Router();
router.route('/route/:id').get(function (req, res) {
res.json({ description: 'Welcome to a route with an ID' });
});
router.route('/route').get(function (req, res) {
res.json({ description: 'Welcome to the normal route' });
});
router.route('/').get(function (req, res) {
res.json({ data: 'Welcome to the app' });
});
app.use('/', router);
app.listen(3000);
当我将浏览器指向 http://myserver.com/node I get the response { data: 'Welcome to the app' }
, which is fine. Though, when I try to go http://myserver.com/node/route or http://myserver.com/node/1210 时,出现错误 Cannot GET //route
。
知道如何更新我的 Apache 配置以保留 Express 路由吗?
我是 运行 CentOS 上的 Apache 2.4.6。
您的主机末尾有一个额外的 /
。尝试将其更改为:
ProxyPass /node http://localhost:3000
在使用我的 nodejs 后端系统在 apache 2 服务器上设置虚拟主机后,我遇到了同样的问题,这是我修复它的方法:
ProxyRequests On
ProxyVia Full
ProxyPreserveHost on
ProxyPass /api http://jwappengine.com:7000
ProxyPass /secure http://jwappengine.com:1442
ProxyPass /host https://jwappengine.com:1400
ProxyPass /connect/v1 https://jwappengine.com:1400
ProxyPass /payment https://jwappengine.com:3000