]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/cmd.php
switch remaining settings to dotenv format
[nominatim.git] / lib / cmd.php
index 7337f814575c2eec3e2b12459dcb4b3c7ba4515c..5a12f99a06c527e2c33f5faf981f3f964f9c64bb 100644 (file)
@@ -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);
     }