Add "No Open Port Found" error page (#994)

This commit is contained in:
Nathan Rajlich
2017-11-18 16:54:17 -08:00
committed by Guillermo Rauch
parent 77d2bcc119
commit 0826958221

View File

@@ -0,0 +1,10 @@
# No Open Port Found
#### Why This Error Occurred
Your application code exited or timed out before binding to a port number.
#### Possible Ways to Fix It
- For Node.js deployments, a call to [`Server#listen()`](https://nodejs.org/dist/latest/docs/api/http.html#http_server_listen) might be missing.
- For Docker deployments, there might be a mismatch from what the `EXPOSE` directive specifies compared to what your application binds to.