nginx如何配置x-forwarded-for头部

作者:绝世好阿狸 时间:2023-06-13 23:09:10 

nginx配置x-forwarded-for头部

本地用tomcat起了一个j2ee的应用,然后又起了一个nginx做反向代理。

nginx.conf:


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {
   worker_connections  1024;
}

http {
   include       mime.types;
   default_type  application/octet-stream;

#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
   #                  '$status $body_bytes_sent "$http_referer" '
   #                  '"$http_user_agent" "$http_x_forwarded_for"';

#access_log  logs/access.log  main;

sendfile        on;
   #tcp_nopush     on;

#keepalive_timeout  0;
   keepalive_timeout  65;

#gzip  on;

server {
       listen       50001;
       server_name  localhost;

#charset koi8-r;

#access_log  logs/host.access.log  main;

location / {
           root   html;
           index  index.html index.htm;
       }

location /ly {
           proxy_pass   http://127.0.0.1:8080/hello.do;
           proxy_set_header            Host $host;  
           proxy_set_header            X-real-ip $remote_addr;  
           proxy_set_header            X-Forwarded-For $proxy_add_x_forwarded_for;  
       }    

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html
       #
       error_page   500 502 503 504  /50x.html;
       location = /50x.html {
           root   html;
       }
   }
   include servers/*;
}

这里配置了nginx的监听端口为50001

使用了proxy_set_header来配置nginx转发的头部操作。

其中如下配置就是针对xff的:

nginx如何配置x-forwarded-for头部

其中$proxy_add_x_forwarded_for变量的值是当前包的x-forwarded-for变量和remote-addr变量,使用逗号隔开。

所以上面的命令就是把当前的包的x-forwarded-for的值设置为x-forwarded-for和remote-addr的连接。

这样这个包转发给下游时,下游就有了这台nginx服务器的ip地址。

当client第一次请求nginx服务器时,nginx拿到的x-forwarded-for为null,remote-addr就是client的实际地址,所以第一次的转发的xff值就只有client的ip地址,转发的nginx的地址是在remote-addr里。

下一台nginx服务器会把第一台nginx服务器的地址填入xff。

所以当一台服务器收到一个包时,上一台服务器的地址并不在xff里面,必须通过remote-addr拿到。

Controller:

public class MainController extends HttpServlet {

public void doGet(HttpServletRequest request,
                     HttpServletResponse response)
           throws ServletException, IOException
   {
       PrintWriter out = response.getWriter();
       out.println("NGINX FORWARD");
       String ssfAddr = request.getHeader("X-Forwarded-For");

String realIp = request.getHeader("X-Real-IP");

String remoteAddr = request.getRemoteAddr();

System.out.println("X-Forwarded-For: " + ssfAddr);
       System.out.println("X-Real-IP: " + realIp);
       System.out.println("remoteAddr: " + remoteAddr);

}

}

本地ip为192.168.43.33。

然后我先使用了手机访问了nginx域名:192.168.43.33:50001/ly

显示:

X-Forwarded-For: 192.168.43.1
X-Real-IP: 192.168.43.1
remoteAddr: 127.0.0.1

这里192.168.43.1是手机的ip,127.0.0.1是nginx的ip。且通过x-real-ip可以获取到真实ip。

在使用一个crul命令:

curl http://localhost:50001/ly -H 'X-Forwarded-For: unkonw, <8.8.8.8> 1.1.1.1' -H 'X-Real-IP: 2.2.2.2'

显示:

X-Forwarded-For: unkonw, <8.8.8.8> 1.1.1.1, 127.0.0.1
X-Real-IP: 127.0.0.1
remoteAddr: 127.0.0.1

这里客户端就是本机,所以会在xff后面添加一个127.0.0.1。也是符合预期的。

来源:https://blog.csdn.net/u010900754/article/details/81160268

标签:nginx,x-forwarded-for,头部
0
投稿

猜你喜欢

  • UCenter Home 2.0新动态 参与在线调查可获得内测版

    2009-07-15 16:26:00
  • CentOS 6.3编译安装LAMP环境笔记

    2023-06-13 18:30:35
  • 如何在Discuz!7.0的边栏添加广告

    2009-04-09 12:01:00
  • 谷歌,百度,云计算,框计算那些事儿

    2010-09-03 11:07:00
  • 提高个人博客的点击率的八个小秘方

    2009-01-08 15:53:00
  • 用Win 2003 server打造安全的个人Web服务器

    2010-04-14 18:23:00
  • Windows2003下VPN服务器架设攻略

    2008-12-22 16:15:00
  • 架设博客服务器要注意什么

    2010-07-07 15:55:00
  • 完美企业网站最后优化:搜索引擎优化规则

    2009-01-04 09:00:00
  • ProFtpd快速指南(四)

    2007-09-21 14:02:00
  • Windows2000 SERVER安全配置服务器手册(4)

    2010-05-22 18:03:00
  • 十分钟让你的外贸网站更专业

    2009-01-23 16:51:00
  • 易观:第二季中国网络游戏市场规模达62亿元

    2009-10-09 09:49:00
  • ADSDAQ广告交换平台 Adsense终结者?

    2007-10-21 09:23:00
  • 设置IP安全策略将木马阻杀在端口外

    2009-11-24 13:16:00
  • Google再现高管离职潮 近两年离职高管一览

    2009-10-14 14:34:00
  • SEO完全手册关键词选取 赢得黄金关键词

    2009-02-27 09:32:00
  • 淘宝网:淘宝定位成C2B 淘宝商城成长最快

    2009-10-27 15:43:00
  • 入门教程:IIS 5.0建Web服务器

    2008-12-24 14:44:00
  • Linux系统下配置功能完善的Web服务器

    2007-04-03 10:24:00
  • asp之家 网站运营 m.aspxhome.com