FoundKey/src/server.ts

67 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
/**
* Core Server
*/
import * as fs from 'fs';
import * as http from 'http';
import * as https from 'https';
2017-01-17 00:33:38 +00:00
import * as cluster from 'cluster';
2016-12-28 22:49:51 +00:00
import * as express from 'express';
2017-01-02 21:03:19 +00:00
import vhost = require('vhost');
2016-12-28 22:49:51 +00:00
2017-01-16 23:19:34 +00:00
import config from './conf';
2017-01-16 23:06:39 +00:00
2016-12-28 22:49:51 +00:00
/**
* Init app
*/
const app = express();
app.disable('x-powered-by');
2017-01-14 01:56:24 +00:00
// Drop request that without 'Host' header
app.use((req, res, next) => {
2017-01-18 07:31:43 +00:00
if (!req.headers['host']) {
res.sendStatus(400);
} else {
next();
}
});
2016-12-28 22:49:51 +00:00
/**
* Register modules
*/
app.use(vhost(`api.${config.host}`, require('./api/server')));
app.use(vhost(config.secondary_host, require('./himasaku/server')));
app.use(vhost(`file.${config.secondary_host}`, require('./file/server')));
app.use(require('./web/server'));
/**
* Create server
*/
const server = config.https.enable ?
https.createServer({
key: fs.readFileSync(config.https.key),
cert: fs.readFileSync(config.https.cert),
ca: fs.readFileSync(config.https.ca)
}, app) :
http.createServer(app);
/**
* Steaming
*/
require('./api/streaming')(server);
/**
* Server listen
*/
server.listen(config.port, () => {
2017-01-17 00:33:38 +00:00
if (cluster.isWorker) {
// Send a 'ready' message to parent process
process.send('ready');
}
2016-12-28 22:49:51 +00:00
});
2017-01-16 22:51:27 +00:00
/**
* Export app for testing
*/
module.exports = app;