[Server] Fix bug

Reject request that without 'Host' header
This commit is contained in:
syuilo 2017-01-07 23:57:45 +09:00
parent ed18520bf4
commit 8b273e215f

View file

@ -14,6 +14,15 @@ import vhost = require('vhost');
const app = express();
app.disable('x-powered-by');
// Reject request that without 'Host' header
app.use((req, res, next) => {
if (!req.headers.host) {
res.sendStatus(400);
} else {
next();
}
});
/**
* Register modules
*/