A follow up on using zabbix30 on el6 . zabbix 3.0.2 packages for RHEL6.x64 has been pushed out.
I have switched to IUS repository, over webtatic.
I have switched to IUS repository, over webtatic.
public function createURL () {
# reset url for base
if($_SERVER['SERVER_PORT'] == "443") { $url = "https://$_SERVER[HTTP_HOST]"; }
// reverse proxy doing SSL offloading
elseif(isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $url = "https://$_SERVER[SERVER_NAME]"; }
elseif(isset($_SERVER['HTTP_X_SECURE_REQUEST']) && $_SERVER['HTTP_X_SECURE_REQUEST'] == 'true') { $url = "https://$_SERVER[SERVER_NAME]"; }
// custom port
elseif($_SERVER['SERVER_PORT']!="80") { $url = "http://$_SERVER[SERVER_NAME]:$_SERVER[SERVER_PORT]"; }
// normal http
$_SERVER['HTTP_X_FORWARDED_PROTO'] = "https";
As part of your pipeline, you may need to perform browser testing across different platforms/environments. To minimize testing time, it'...