Hapijs application not responses correctly. HTTP request sent, awaiting response... Read error (Connection reset by peer) in headers

nvm in case anyone else has this problem:
I was using flask, by default it binds to localhost & 5000, so you have to specify:
app.run(host=“0.0.0.0”)
Cheers!