如何保留原始IP地址

如何保留原始IP地址

本文介绍了apache ProxyPass:如何保留原始IP地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们使用 ProxyPass 将所有/r"请求重定向到 jboss 的 18080 端口,如下所示:

We are using ProxyPass to redirect all "/r" requests to jboss on port 18080 as follows:

ProxyPreserveHost on
ProxyPass /r http://localhost:18080/redirectService/
ProxyPassReverse /r http://localhost:18080/redirectService/

但是,这会导致在 jboss 的访问日志中记录的 IP 地址为127.0.0.1".有人知道我们如何保留来自 HttpServletRequest 请求的原始 IP 吗?我们想从 doGet() 中的 jboss servlet 请求访问它

But, that causes the IP address logged in jboss's access log as "127.0.0.1". Does somebody know how can we preserve the original IP from where the request came in HttpServletRequest? We want to acesss it from jboss servlet request in doGet()

推荐答案

您可以从 X-Forwarded-For 标头字段.

You can get the original host from X-Forwarded-For header field.

这篇关于apache ProxyPass:如何保留原始IP地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-27 11:37