From 82a395d4e5e41083166b1d19c774e3bd8b9f3fe1 Mon Sep 17 00:00:00 2001 From: rakeshm-36 <5601rakesh@gmail.com> Date: Tue, 19 May 2026 16:23:35 +0530 Subject: [PATCH] Update index.js updateing port to listen all --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index ecaa444..947b1c1 100644 --- a/index.js +++ b/index.js @@ -4,4 +4,4 @@ var http = require('http'); http.createServer(function (req, res) { res.write('** Hey my app was deployed :) **'); //write a response to the client res.end(); //end the response -}).listen(80); //the server object listens on port 80 +}).listen('0.0.0.0'); //the server object listens on port 80