diff --git a/scripts/start.js b/scripts/start.js
index a0b01545b5b4859b4151b77e7b5d37c91b32b205..a1d984017f8a79cdbb11d481cf9c6b34f43eec7e 100644
--- a/scripts/start.js
+++ b/scripts/start.js
@@ -184,6 +184,15 @@ function onProxyError(proxy) {
       chalk.cyan(err.code) + ').'
     );
     console.log();
+
+    // And immediately send the proper error response to the client.
+    // Otherwise, the request will eventually timeout with ERR_EMPTY_RESPONSE on the client side.
+    if (res.writeHead && !res.headersSent) {
+        res.writeHead(500);
+    }
+    res.end('Proxy error: Could not proxy request ' + req.url + ' from ' + 
+      host + ' to ' + proxy + ' (' + err.code + ').'
+    );
   }
 }