余由模块caled proxywrap该包裹的node.js
ServerS和自动去除从连接流,并且复位PROXY协议报头
socket.remoteAddress和
socket.remotePort将这些值在代理报头中找到。
它的工作原理与内置
Server模块(例如
http,
https和
net)作为一个下拉更换的模块:
var http = require('http') , proxiedHttp = require('proxywrap').proxy(http) , express = require('express') , app = express() , srv = proxiedHttp.createServer(app); // instead of http.createServer(app)app.get('/', function(req, res) { res.send('IP = ' + req.connection.remoteAddress + ':' + req.connection.remotePort);});srv.listen(80);
它也可以与spdy模块一起使用:
var proxiedSpdy = require('proxywrap').proxy(require('spdy').server);
当然,您必须在ELB(或应用程序支持的任何代理)上启用PROXY协议。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)