通過nginx中轉獲取不到IP的問題解決

netcorner發表於2017-10-15

第一步:在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();即可 

相關文章