mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
fix through proxying not matching webserver_url using X-Forwared-Host header
This commit is contained in:
parent
7da5805d80
commit
211e60b45d
@ -138,6 +138,11 @@ class Egw extends Egw\Base
|
||||
substr($_SERVER['HTTP_X_FORWARDED_URI'], 0, $prefix).
|
||||
$GLOBALS['egw_info']['server']['webserver_url'];
|
||||
}
|
||||
if (isset($_SERVER['HTTP_X_FORWARDED_HOST']) && $GLOBALS['egw_info']['server']['webserver_url'][0] != '/')
|
||||
{
|
||||
$GLOBALS['egw_info']['server']['webserver_url'] = ($_SERVER['HTTPS'] ? 'https://' : 'http://').
|
||||
$_SERVER['HTTP_X_FORWARDED_HOST'].parse_url($GLOBALS['egw_info']['server']['webserver_url'], PHP_URL_PATH);
|
||||
}
|
||||
|
||||
// if no server timezone set, use date_default_timezone_get() to determine it once
|
||||
// it fills to log with deprecated warnings under 5.3 otherwise
|
||||
|
Loading…
Reference in New Issue
Block a user