博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx代理 tomcat获得真实用户IP
阅读量:5288 次
发布时间:2019-06-14

本文共 715 字,大约阅读时间需要 2 分钟。

nginx代理 tomcat获得真实用户IP

版权声明:本文为博主原创文章,遵循版权协议,转载请附上原文出处链接和本声明。
本文链接:
1.nginx的location中设置 header,如
location /ConfigService/{
proxy_read_timeout 90;
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-Proto $scheme;
proxy_pass http://www.qawe.info:8088/ConfigService/;
}
2.tomcat配置(server.xml)中添加RemoteIpValve配置,如
<Valve
className="org.apache.catalina.valves.RemoteIpValve"
httpServerPort="8088"
httpsServerPort="8443"
remoteIpHeader="x-forwarded-for"
proxiesHeader="x-forwarded-by"
protocolHeader="x-forwarded-proto"
/>

转载于:https://www.cnblogs.com/think90/p/11454985.html

你可能感兴趣的文章
Strategy(策略)模式
查看>>
P、NP、NP-Complete、NP-hard问题
查看>>
SQL Server 端口号的使用
查看>>
indexof使用
查看>>
Weblogic Cluster环境下apache报错
查看>>
[HAOI2009][BZOJ2431] 逆序对数列
查看>>
对象的引用
查看>>
Visual Studio 2013下JSON可视化工具
查看>>
PHP导出数据到表格的实例
查看>>
back键彻底关闭应用程序
查看>>
hadoop中hive常用的交互式操作
查看>>
dos窗口出现error:could not open ...jvm.cfg解决方法
查看>>
polyfit线性拟合函数
查看>>
swiper插件简介及用法
查看>>
物理引擎入门
查看>>
P1447 [NOI2010]能量采集
查看>>
Linux常用文件介绍
查看>>
10、jstl标签库
查看>>
iOS编码规范参考
查看>>
ios UITableView背景图片设置
查看>>