mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
parent
fc4df341b3
commit
ded29631bf
14
common.php
14
common.php
@ -39,16 +39,16 @@ date_default_timezone_set('UTC');
|
|||||||
|
|
||||||
// Set remote address
|
// Set remote address
|
||||||
$allowedCDNs = array(
|
$allowedCDNs = array(
|
||||||
'HTTP_X_FORWARDED_FOR',
|
'HTTP_X_FORWARDED_FOR',
|
||||||
'HTTP_FASTLY_CLIENT_IP',
|
'HTTP_FASTLY_CLIENT_IP',
|
||||||
'HTTP_CF_CONNECTING_IP'
|
'HTTP_CF_CONNECTING_IP'
|
||||||
);
|
);
|
||||||
foreach ($allowedCDNs as $allowedCDN)
|
foreach ($allowedCDNs as $allowedCDN)
|
||||||
{
|
{
|
||||||
if (isset($_SERVER[$allowedCDN]) && filter_var($_SERVER[$allowedCDN], FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE))
|
if (isset($_SERVER[$allowedCDN]) && filter_var($_SERVER[$allowedCDN], FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE))
|
||||||
{
|
{
|
||||||
$_SERVER['REMOTE_ADDR'] = $_SERVER[$allowedCDN];
|
$_SERVER['REMOTE_ADDR'] = $_SERVER[$allowedCDN];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get initial config
|
// Get initial config
|
||||||
|
Loading…
Reference in New Issue
Block a user