Handbuch:$wgUsePrivateIPs

From mediawiki.org
This page is a translated version of the page Manual:$wgUsePrivateIPs and the translation is 40% complete.
Einstellungen für den HTTP-Proxy (CDN): $wgUsePrivateIPs
Whether private X-Forwarded-For IPs should be accepted
Eingeführt in Version:1.14.0 (r43784)
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(Wahrheitswert)
Standardwert:false

Details

Determines whether MediaWiki will trust an X-Forwarded-For (XFF) header specifying a private IP in requests from a trusted forwarding proxy. If set to false, private IP addresses in the XFF header will be ignored.

A trusted forwarding proxy is any proxy listed in either $wgCdnServers or $wgCdnServersNoPurge . Extensions can also mark proxies as trusted via the IsTrustedProxy hook.

So if you have two traffic managers (Might be Zeus or F5) sending requests to your webservers, forwarding from an internal network, the config might be this:

$wgUsePrivateIPs = true;
$wgCdnServersNoPurge = array( '172.1.1.1', '172.1.1.2' );

Siehe auch