使用nginx后让tomcat的localhost_access_log获得真实IP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用nginx后让tomcat的localhost_access_log获得真实IP相关的知识,希望对你有一定的参考价值。
配置nginx
在location节点下面加入如下代码
proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
修改tomcat的server.xml配置文件
找到如下配置
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%h %l %u %t "%r" %s %b" />
修改成如下即可
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="%{X-Real-IP}i %l %u %t "%r" %s %b" />
本文出自 “运维笔录 美玲” 博客,请务必保留此出处http://meiling.blog.51cto.com/6220221/1979320
以上是关于使用nginx后让tomcat的localhost_access_log获得真实IP的主要内容,如果未能解决你的问题,请参考以下文章
nginx + tomcat 配置,静态资源直接使用nginx
nginx环境下打开localhost,网页文件为index.jsp tomcat、jdk均已配置,但是出现空白页面,无任何字样