http { #指定接收来自哪个前端发送的 IP head 可以是单个IP或者IP段 set_real_ip_from 10.168.38.0/24; set_real_ip_from 10.132.44.0/24; #此指令设置了IP地址头转发替换使用 real_ip_he...
分类:
其他好文 时间:
2015-01-23 18:10:05
阅读次数:
218
tomcat日志记录nginx的真实ip1、在nginx.conf设置如下http { set_real_ip_from 10.168.38.0/24; #通过该指令指定信任的地址,将会被替代为精确的IP地址 real_ip_header X-Forwarded-For; #这个指令用于设...
分类:
其他好文 时间:
2015-01-23 17:39:31
阅读次数:
221
以下代码为nginx.conf文件内容worker_processes 1;events { worker_connections 1024;}http { # NginxHttpRealIpModule set_real_ip_from 10.96.0.0/16; se...
分类:
其他好文 时间:
2015-01-06 19:57:36
阅读次数:
261
通过查资料后,再去看了看我的配置文件,结果发现我没有如下配置: nginx反向代理配置时,一般会添加下面的配置: ????? proxy_set_header Host $host; ??????proxy_set_header X-Real-IP $remote_ad...
分类:
其他好文 时间:
2014-11-21 00:10:23
阅读次数:
174
publicstaticStringgetIpAddr(HttpServletRequestrequest){Stringip=request.getHeader("X-Real-IP");if(!StringUtils.isBlank(ip)&&!"unknown".equalsIgnoreCas...
分类:
其他好文 时间:
2014-11-04 10:46:05
阅读次数:
223
我这边有一个ECSHOP后台,有一个功能,在客户下订单时自动获取客户IP,用的是ECSHOP本身的real_ip函数,但这个函数存在一个问题,十个订单得到的IP,可能会有几个与CNZZ统计得到的不一样。也就是说得到的不准确。另一个问题是这几天给主机加了CDN之后,客户下订单后,得到的IP竟然是CDN...
分类:
其他好文 时间:
2014-10-30 13:12:51
阅读次数:
215
先把代码贴在这里,有时间整理if(r->headers_in.x_real_ip != NULL) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "%V", &r->headers_in.x_real_ip->value); ...
分类:
其他好文 时间:
2014-09-23 15:36:14
阅读次数:
228
一般来说这些日志的分析价值不高,而且还占用硬盘空间,一般都会关掉。nginx配置:location~.*\.(gif|jpg|jpeg|png|bmp|swf|ico)${access_logoff;proxy_passhttp://cdel_jxjy;proxy_redirectoff;proxy_set_headerHost$host;proxy_set_headerX-Real-IP$remote_addr;proxy_set_he..
分类:
Web程序 时间:
2014-08-08 18:24:56
阅读次数:
286
1.?? 创建 nginx 代理配置文件 命名为 proxy.conf (将给文件存放到 conf 的配置文件夹为例): proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remo...
分类:
其他好文 时间:
2014-07-22 08:34:34
阅读次数:
224
开门见山,操作如下:首先,在前端nginx上需要做如下配置:location/{proxy_passhttp://test1;proxy_set_hearderhost$host;proxy_set_headerX-Real_IP$remoute_addr;proxy_set_header$proxy_add_x_forwarded_for;};nginx会在把请求转向后台real-server前把http报头中的ip地址进..
分类:
其他好文 时间:
2014-05-27 04:03:48
阅读次数:
321