X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/15a1666f8a1e19c338015fccd502be6cfd5c24df..0847964a2788c3560ea7a5133508790c2c07adc8:/lib/cmd.php diff --git a/lib/cmd.php b/lib/cmd.php index 7337f814..5a12f99a 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -198,19 +198,18 @@ function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreError function setupHTTPProxy() { - if (!CONST_HTTP_Proxy) { + if (!getSettingBool('HTTP_PROXY')) { return; } - $sProxy = 'tcp://'.CONST_HTTP_Proxy_Host.':'.CONST_HTTP_Proxy_Port; + $sProxy = 'tcp://'.getSetting('HTTP_PROXY_HOST').':'.getSetting('HTTP_PROXY_PROT'); $aHeaders = array(); - if (CONST_HTTP_Proxy_Login != null - && CONST_HTTP_Proxy_Login != '' - && CONST_HTTP_Proxy_Password != null - && CONST_HTTP_Proxy_Password != '' - ) { - $sAuth = base64_encode(CONST_HTTP_Proxy_Login.':'.CONST_HTTP_Proxy_Password); + $sLogin = getSetting('HTTP_PROXY_LOGIN'); + $sPassword = getSetting('HTTP_PROXY_PASSWORD'); + + if ($sLogin && $sPassword) { + $sAuth = base64_encode($sLogin.':'.$sPassword); $aHeaders = array('Proxy-Authorization: Basic '.$sAuth); }