Added devel ports

This commit is contained in:
MrFry 2020-04-12 20:37:21 +02:00
parent 2535ee92b0
commit e3fecd61d0
2 changed files with 8 additions and 2 deletions

View file

@ -21,8 +21,13 @@ console.clear()
const startHTTPS = true
const isRoot = process.getuid && process.getuid() === 0
const port = isRoot ? 80 : 8080
const httpsport = 5001
let port = isRoot ? 80 : 8080
let httpsport = isRoot ? 443 : 5001
if (process.env.NS_DEVEL) {
port = 24243
httpsport = 24244
}
const express = require('express')
const vhost = require('vhost')