diff --git a/landing-page/index.html b/landing-page/index.html
index 5c5e1f57d..d01ff3833 100644
--- a/landing-page/index.html
+++ b/landing-page/index.html
@@ -155,7 +155,12 @@
Update
checkUpdate.fail(function(jqXHR) {
console.log(jqXHR.responseText);
$("#checkLoader").hide();
- $("#updateText").text(jqXHR.responseJSON.title);
+ if (jqXHR.status === 404 ) {
+ $("#updateText").text(jqXHR.responseJSON.title);
+ } else {
+ $("#updateText").text("Unknown issue: " + jqXHR.statusText);
+ $("#updateRunBtn").show();
+ }
$("#updateText").show();
});
}
diff --git a/nginx.conf b/nginx.conf
index cfbdf705d..3ac17aedb 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -74,5 +74,6 @@
# Configurator
location /configurator {
proxy_pass http://127.0.0.1:7777;
+ proxy_read_timeout 86400;
}
}