Apache 2.4 X-Forwarded-For 用于 remoteip

Apache 2.4 X-Forwarded-For 用于 remoteip

我使用以下文件配置了 apache 2.4

/etc/apache2/conf-available/remoteip.conf

RemoteIPHeader X-Forwarded-For 
RemoteIPTrustedProxy 127.0.0.1

但是它不会在 tomcat 中包含标头。

Tomcat 服务器.xml

<Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="x-forwarded-for" requestAttributesEnabled="true" protocolHeader="x-forwarded-proto"  protocolHeaderHttpsValue="https" internalProxies="127\.0\.[0–1]\.1"/>

相关内容