我使用node-http-proxy库创建转发代理服务器。 我最终计划使用一些中间件来动态修改html代码。 这就是我的代理服务器代码的样子
var httpProxy = require('http-proxy')
httpProxy.createServer(function(req, res, proxy) {
var urlObj = url.parse(req.url);
console.log("actually proxying requests")
req.headers.host = urlObj.host;
req.url = urlObj.path;
proxy.proxyRequest(req, res, {
host : urlObj.host,
port : 80,
enable : { xforward: true }
});
}).listen(9000, function () {
console.log("Waiting for requests...");
});
现在我修改chrome的代理设置,并启用web代理服务器地址作为localhost:9000
但是,每次访问普通的http网站时,我的服务器都会崩溃,说"Error: Must provide a proper URL as target"
我是nodejs的新手,我不完全明白我在这里做错了什么?
答案 0 :(得分:2)
要使用动态目标,您应该创建一个使用代理实例的常规HTTP服务器,您可以为其动态设置目标(基于传入请求)。
裸骨转发代理:
const http = require('http');
const httpProxy = require('http-proxy');
const proxy = httpProxy.createProxyServer({});
http.createServer(function(req, res) {
proxy.web(req, res, { target: req.url });
}).listen(9000, () => {
console.log("Waiting for requests...");
});