diff --git a/install/update.php b/install/update.php
index aafb69898eada20fae728f193da57b18e88cbe0d..ac052f8dd2f2836906d1000a100675f56f607084 100644
--- a/install/update.php
+++ b/install/update.php
@@ -287,6 +287,11 @@ checkDbHealth();
  */
 updateDbAndIni();
 
+//** read server config from db into $conf['server_config']
+$tmp = $inst->db->queryOneRecord("SELECT config FROM ?? WHERE server_id = ?", $conf["mysql"]["database"] . '.server', $conf['server_id']);
+$conf['server_config'] = ini_to_array(stripslashes($tmp['config']));
+unset($tmp);
+
 /*
  * Reconfigure the permisson if needed
  * (if this is done at client side, only this client is updated.
@@ -428,7 +433,7 @@ if($reconfigure_services_answer == 'yes' || $reconfigure_services_answer == 'sel
 				$inst->configure_nginx();
 			}
 
-			if ($conf['web']['apps_vhost_enabled'] == 'y') {
+			if ($conf['server_config']['web']['apps_vhost_enabled'] == 'y') {
 				//** Configure apps vhost
 				swriteln('Configuring Apps vhost');
 				$inst->configure_apps_vhost();