码迷,mamicode.com
首页 > 其他好文 > 详细

通过nginx中转获取不到IP的问题解决

时间:2017-10-15 17:27:46      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:eth   server   localhost   header   nbsp   host   request   nginx   web   

第一步:在nginx.conf中配置反向代理时把真实IP带上,例如: 

server { 
    listen 80; 
    server_name  myibook.com.cn; 
    location ~ ^/(WEB-INF)/ { 
        deny all; 
     } 

    location / { 
      proxy_pass http://localhost:8888; 
      proxy_set_header  x-client-ip  $remote_addr; 
    } 
  } 

第二步:应用程序中用 String ip = request.getHeader("x-client-ip");替代String ip = request.getRemoteAddr();即可 

通过nginx中转获取不到IP的问题解决

标签:eth   server   localhost   header   nbsp   host   request   nginx   web   

原文地址:http://www.cnblogs.com/netcorner/p/7672458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!