修改node-http-proxy 示例时...
问题: 手动更改req.headers.host
为远程主机('example.com')时,浏览器中的 url 没有改变。
注意:我认为这是可行的,但是当使用 google.com 作为我的示例时,事实证明 google 正在检测代理并更改主机。
问题:有没有办法每次都将浏览器中的 url 更改为远程主机(即 example.com)?谢谢!
var util = require('util'),
colors = require('colors'),
http = require('http'),
httpProxy = require('../../lib/node-http-proxy');
//
// Http Server with proxyRequest Handler and Latency
//
var proxy = new httpProxy.RoutingProxy();
http.createServer(function (req, res) {
req.headers.host = 'example.com'; // manually setting example.com
var buffer = httpProxy.buffer(req);
setTimeout(function () {
proxy.proxyRequest(req, res, {
port: 80,
host: 'example.com',
buffer: buffer
});
}, 200);
}).listen(8004);
util.puts('http server '.blue + 'started '.green.bold + 'on port '.blue + '8004 '.yellow + 'with proxyRequest handler'.cyan.underline + ' and latency'.magenta);
util.puts('http server '.blue + 'started '.green.bold + 'on port '.blue + '9000 '.yellow);