Skip to content

Commit 24434b7

Browse files
committed
Change the way we bind to IP addresses
1 parent 0075693 commit 24434b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ app.post('/service/disable/metrics', isloggedin.auth, function(req, res) {
448448
});
449449

450450
// start server on the specified port and binding host
451-
http.listen(appEnv.port, appEnv.bind, function() {
451+
http.listen(appEnv.port, "0.0.0.0", function() {
452452

453453
// print a message when the server starts listening
454454
console.log("server starting on " + appEnv.url);

0 commit comments

Comments
 (0)