From 36985c24f22dd6c933ea844c6ccb94de63ec8d70 Mon Sep 17 00:00:00 2001 From: josegonzalez Date: Thu, 27 Apr 2023 21:37:11 -0400 Subject: [PATCH] docs: add a note to the troubleshooting docs pointing developers to bind to all interfaces Closes #5798 --- docs/getting-started/troubleshooting.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/troubleshooting.md b/docs/getting-started/troubleshooting.md index e5529f5d3..e0e4d7b6e 100644 --- a/docs/getting-started/troubleshooting.md +++ b/docs/getting-started/troubleshooting.md @@ -167,7 +167,11 @@ When specifying your port you may want to use something similar to: var port = process.env.PORT || 3000 ``` -Please see https://github.com/dokku/dokku/issues/282. +Please see [#282](https://github.com/dokku/dokku/issues/282). + +Additionally, your application should listen/bind to all interfaces (`0.0.0.0`). Many frameworks default to listening on `127.0.0.1`. + +Please see [#5798](https://github.com/dokku/dokku/issues/5798). ### Deployment fails because of slow internet connection, messages shows `gzip: stdin: unexpected end of file`.