我正在尝试设置一个仅转发请求的 node-http-proxy。最后,这个代理应该在我通过浏览器访问的每个网站中注入 javascript..
目前,大多数页面都已正确转发和显示,但有些页面(如posterkoenig.ch或 verkehrsclub.ch)返回空白页面或页面上有错误。如果没有代理,这两个站点都可以正常工作。我需要改变什么,或者我错过了什么没有正确转发?
我对 nodejs 很陌生,甚至不完全确定我的方法是否可行。
这是我到目前为止所得到的:
var httpProxy = require('http-proxy');
var url = require('url');
httpProxy.createServer(function(req, res, proxy) {
var urlObj = url.parse(req.url);
proxy.proxyRequest(req, res, {
host: urlObj.host,
port: 80,
changeOrigin: true,
enable : { xforward: true }
});
}).listen(9000, function () {
console.log("Waiting for requests...");
});
更新
正如@robertklep 所建议的,我删除changeOrigin
并重新定义req.headers.host
了req.headers.url
海报科尼希:
现在抛出:
An error has occurred:
{"code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"}
verkehrsclub.ch:
头版现在可以工作,但子页面仍然会在页面上引发错误。
var httpProxy = require('http-proxy');
var url = require('url');
httpProxy.createServer(function(req, res, proxy) {
var urlObj = url.parse(req.url);
req.headers['host'] = urlObj.host;
req.headers['url'] = urlObj.href;
proxy.proxyRequest(req, res, {
host: urlObj.host,
port: 80,
enable : { xforward: true }
});
}).listen(9000, function () {
console.log("Waiting for requests...");
});