diff --git a/server.js b/server.js index 7a77706..b05348e 100755 --- a/server.js +++ b/server.js @@ -22,12 +22,8 @@ process.stdout.write('\u001b[2J\u001b[0;0H') // console.clear() const startHTTPS = true const isRoot = process.getuid && process.getuid() === 0 -let port = isRoot ? 80 : 8080 -let httpsport = isRoot ? 443 : 5001 -if (process.env.NS_DEVEL) { - port = 24243 - httpsport = 24244 -} +const port = isRoot ? 80 : 8080 +const httpsport = isRoot ? 443 : 5001 const express = require('express') const vhost = require('vhost')