Update common.php

This commit is contained in:
Roman Kelesidis 2024-10-31 19:53:47 +07:00
parent d145388e9c
commit fc4df341b3

View File

@ -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