mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
d2958650e6
Server host config bug fix
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
const app = require("./app");
|
|
const common = require("./common");
|
|
const http = require("http");
|
|
var connect = require('./connect').setServerConfiguration(); //Do NOT Remove
|
|
|
|
const onError = error => {
|
|
if (error.syscall !== "listen") {
|
|
throw error;
|
|
}
|
|
switch (error.code) {
|
|
case "EACCES":
|
|
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " requires elevated privileges");
|
|
process.exit(1);
|
|
break;
|
|
case "EADDRINUSE":
|
|
console.error("http://" + (common.host ? common.host : 'localhost') + ":" + common.port + " is already in use");
|
|
process.exit(1);
|
|
break;
|
|
case "ECONNREFUSED":
|
|
console.error("Server is down/locked");
|
|
default:
|
|
console.error("DEFUALT ERROR");
|
|
console.error(error.code);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
const onListening = () => {
|
|
console.log('Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port);
|
|
};
|
|
|
|
const server = http.createServer(app);
|
|
|
|
server.on("error", onError);
|
|
server.on("listening", onListening);
|
|
if (common.host) {
|
|
server.listen(common.port, common.host);
|
|
} else {
|
|
server.listen(common.port);
|
|
}
|