run the install web ui on port 80

This commit is contained in:
Girish Ramakrishnan
2016-10-21 16:04:08 -07:00
parent 64f3b45eef
commit 1244a73a19
3 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ function startSetupServer(callback) {
gSetupServer = http.createServer(app);
gSetupServer.on('error', console.error);
gSetupServer.listen(2021, '127.0.0.1', callback);
gSetupServer.listen(80, '0.0.0.0', callback);
}
function stopSetupServer(callback) {