From 653394120732a99a8a20bd3ee785dcd8dcbb00cf Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 22 Apr 2015 14:07:24 -0400 Subject: [PATCH] remove hardcoded port variable --- install/web.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install/web.js b/install/web.js index 3a2b3f0373..c61ae743a0 100644 --- a/install/web.js +++ b/install/web.js @@ -71,9 +71,7 @@ function welcome(req, res) { function install(req, res) { var env = {}; - - req.body.port = "4567"; - + for (var i in req.body) { if (req.body.hasOwnProperty(i)) { env[i.replace(':', '__')] = req.body[i];