This commit is contained in:
parent
7f19822b65
commit
9e81fbd037
|
@ -19,7 +19,7 @@ app.disable('x-powered-by');
|
||||||
|
|
||||||
// Drop request that without 'Host' header
|
// Drop request that without 'Host' header
|
||||||
app.use((req, res, next) => {
|
app.use((req, res, next) => {
|
||||||
if (!req.headers.host) {
|
if (!req.headers['host']) {
|
||||||
res.sendStatus(400);
|
res.sendStatus(400);
|
||||||
} else {
|
} else {
|
||||||
next();
|
next();
|
||||||
|
|
Loading…
Reference in New Issue