We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eabfe51 + efd5f79 commit fcf2510Copy full SHA for fcf2510
src/index.ts
@@ -49,10 +49,10 @@ if (healthCheckPort) {
49
res.writeHead(stream.state === "connected" ? 200 : 500);
50
res.end();
51
})
52
- .listen(Number.parseInt(healthCheckPort), "127.0.0.1");
+ .listen(Number.parseInt(healthCheckPort), "0.0.0.0");
53
54
console.log(
55
- `Started listening for healthchecks on http://127.0.0.1:${healthCheckPort}`,
+ `Started listening for healthchecks on http://0.0.0.0:${healthCheckPort}`,
56
);
57
}
58
0 commit comments