fixed config paths

This commit is contained in:
muerwre 2018-12-03 15:35:07 +07:00
parent 9c0038f0a3
commit bf1b92fdf1
18 changed files with 92 additions and 124 deletions

View file

@ -1,90 +1,34 @@
#!/usr/bin/env node
/**
* Module dependencies.
*/
const { CONFIG } = require('../../config/backend');
const app = require('../app');
const debug = require('debug')('orchid-backend:server');
const fs = require('fs');
const http = require('http');
const https = require('https');
/**
* Get port from environment and store in Express.
*/
if (CONFIG.HTTP.ENABLED) {
const httpPort = CONFIG.HTTP.PORT;
app.set('port', httpPort);
const port = normalizePort(process.env.PORT || '3000');
app.set('port', port);
const httpServer = http.createServer(app);
httpServer.listen(httpPort);
/**
* Create HTTP server.
*/
const server = http.createServer(app);
/**
* Listen on provided port, on all network interfaces.
*/
server.listen(port);
server.on('error', onError);
server.on('listening', onListening);
/**
* Normalize a port into a number, string, or false.
*/
function normalizePort(val) {
const port = parseInt(val, 10);
if (isNaN(port)) {
// named pipe
return val;
}
if (port >= 0) {
// port number
return port;
}
return false;
httpServer.on('error', console.log);
httpServer.on('listening', console.log);
}
/**
* Event listener for HTTP server "error" event.
*/
if (CONFIG.HTTPS.ENABLED) {
const sslPort = CONFIG.HTTPS.PORT;
app.set('port', sslPort);
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
const privateKey = fs.readFileSync(CONFIG.HTTPS.PRIVATE_KEY, 'utf8');
const certificate = fs.readFileSync(CONFIG.HTTPS.CERTIFICATE, 'utf8');
const ca = fs.readFileSync(CONFIG.HTTPS.CA, 'utf8');
const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;
const sslServer = https.createServer({ privateKey, certificate, ca }, app);
// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
sslServer.listen(sslPort);
sslServer.on('error', console.log);
sslServer.on('listening', console.log);
}
/**
* Event listener for HTTP server "listening" event.
*/
function onListening() {
const addr = server.address();
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}