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

HAproxy 让后端RS记录真实IP

时间:2019-08-02 12:47:01      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:配置   dash   ade   agent   from   list   www   pac   stat   

 

 

#让RS记录客户端的真实IP

#1.先在haproxy.cfg中加入下面参数。

(1)

    defaults  

............

  option http-server-close

 

(2)listen www
...
option forwardfor 

          
#如果后端服务器需要获得客户端真实ip需要配置的参数,必须要放在listen模块下 

#2.如果是apache,则加入下面参数

LogFormat  “\”%{X-Forwarded-For}i\”%l %t \"%r\" %>s %b \"%{Referer}i\"\"%{User-Agent}i\"" combined
主要是“\”%{X-Forwarded-For}i\ 这个参数可以记录IP

#3.如果是后端RS是nginx则加入下面参数

set_real_ip_from ip;(这个ip填写的是proxy的ip)
 
real_ip_header X-Forwarded-For;

log_format main ‘$remote_addr – $remote_user [$time_local] “$request” ‘ 
                ‘$status $body_bytes_sent “$http_referer” ‘ 
                ‘”$http_user_agent” “$http_x_forwarded_for”‘
=============================================

HAproxy 让后端RS记录真实IP

标签:配置   dash   ade   agent   from   list   www   pac   stat   

原文地址:https://www.cnblogs.com/Crazy-Liu/p/11287752.html

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