added HSTS header

This commit is contained in:
Danny Coates
2017-07-17 12:36:32 -07:00
parent 2cf2fcebc9
commit 2127857790

View File

@@ -32,6 +32,10 @@ app.engine(
app.set('view engine', 'handlebars'); app.set('view engine', 'handlebars');
app.use(helmet()); app.use(helmet());
app.use(helmet.hsts({
maxAge: 31536000,
force: conf.env === 'production'
}));
app.use( app.use(
helmet.contentSecurityPolicy({ helmet.contentSecurityPolicy({
directives: { directives: {