gpt4 book ai didi

javascript - 检查在新端口上运行的应用程序

转载 作者:行者123 更新时间:2023-11-29 21:45:46 25 4
gpt4 key购买 nike

我需要创建应用程序获取特定端口的请求并将其代理到不同端口上的新服务器

例如以下端口 3000 将代理到端口 9000你实际上在 9000 上运行应用程序(在引擎盖下),因为客户端中的用户点击了 3000

http://localhost:3000/a/b/c

http://localhost:9000/a/b/c

我尝试类似的东西

var proxy = httpProxy.createProxyServer({});

http.createServer(function (req, res) {

var hostname = req.headers.host.split(":")[0];
var pathname = url.parse(req.url).pathname;
proxy.web(req, res, {
target: 'http://' + hostname + ':' + 9000
});
var proxyServer = http.createServer(function (req, res) {

res.end("Request received on " + 9000);
});
proxyServer.listen(9000);

}).listen(3000, function () {

});
  1. 是正确的做法吗?
  2. 如何测试?我问,因为如果我在端口 3000 中运行 Node 应用程序,我不能将第一个 URL 放入客户端 http://localhost:3000/a/b/c因为这个端口已经被占用了。有解决方法吗?

最佳答案

很少examples关于代理服务器的各种使用。这是一个基本代理服务器的简单示例:

var http = require("http");
var httpProxy = require('http-proxy');

/** PROXY SERVER **/
var proxy = httpProxy.createServer({
target:'http://localhost:'+3000,
changeOrigin: true
})

// add custom header by the proxy server
proxy.on('proxyReq', function(proxyReq, req, res, options) {
proxyReq.setHeader('X-Special-Proxy-Header', 'foobar');
});

proxy.listen(8080);

/** TARGET HTTP SERVER **/
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });

//check if the request came from proxy server
if(req.headers['x-special-proxy-header'])
console.log('Request received from proxy server.')

res.write('request successfully proxied to: ' + req.url + '\n' + JSON.stringify(req.headers, true, 2));
res.end();
}).listen(3000);

测试代理服务器是否工作或请求是否来自代理服务器:

我添加了一个 proxyReq 监听器,它添加了一个自定义 header 。您可以从此 header 判断请求是否来自代理服务器。

因此,如果您访问 http://localhost:8080/a/b/c,您将看到 req.headers 有一个像这样的 header :

'X-Special-Proxy-Header': 'foobar'

只有当客户端向 8080 端口发出请求时才会设置此 header

但是对于 http://localhost:3000/a/b/c,您不会看到这样的 header ,因为客户端正在绕过代理服务器并且从未设置该 header 。

关于javascript - 检查在新端口上运行的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31254175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com