nginx client ip配置

server {

        listen       80;

        server_name  localhost;

        location /{

            root   html;

            index  index.html index.htm;

                            proxy_pass                  http://backend; 

           proxy_redirect              off;

           proxy_set_header            Host $host;

           proxy_set_header            X-real-ip $remote_addr;

           proxy_set_header            X-Forwarded-For $proxy_add_x_forwarded_for;

                     # proxy_set_header            X-Forwarded-For $http_x_forwarded_for;

        }

代码中使用:

request.getAttribute("X-Forwarded-For")

Ref:http://blog.csdn.net/a936676463/article/details/8961504

posted @ 2017-09-12 17:31  _DN  阅读(776)  评论(0编辑  收藏  举报