Co-Authored-By: tamaina <tamaina@hotmail.co.jp>
This commit is contained in:
syuilo 2018-04-12 05:54:54 +09:00
parent b846eb8afe
commit 0f99469243

View file

@ -41,6 +41,17 @@ app.use((req, res, next) => {
next();
});
/**
* HSTS
* 6month(15552000sec)
*/
if (config.url.startsWith('https')) {
app.use((req, res, next) => {
res.header('strict-transport-security', 'max-age=15552000; preload');
next();
});
}
// Drop request when without 'Host' header
app.use((req, res, next) => {
if (!req.headers['host']) {