Manual:$wgUsePrivateIPs
HTTP プロキシ (CDN) 設定: $wgUsePrivateIPs | |
---|---|
プライベート X-Forwarded-For IP を受け付けるかどうか |
|
導入されたバージョン: | 1.14.0 (r43784) |
除去されたバージョン: | 使用中 |
許容される値: | (真偽値) |
既定値: | false |
その他の設定: アルファベット順 | 機能順 |
詳細
Determines whether MediaWiki will trust an X-Forwarded-For (XFF) header specifying a private IP in requests from a trusted forwarding proxy.
false
を設定すると、XFF ヘッダー内のプライベート IP アドレスは無視されます。
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' );