Skip to content

Instantly share code, notes, and snippets.

@tetrashine
Created July 19, 2020 10:29
Show Gist options
  • Save tetrashine/e1b2c7d5266fed1c2941d91547318925 to your computer and use it in GitHub Desktop.
Save tetrashine/e1b2c7d5266fed1c2941d91547318925 to your computer and use it in GitHub Desktop.
helmet-2.js
app.use(helmet.referrerPolicy({ policy: 'same-origin' }));
app.use(helmet.contentSecurityPolicy({
directives: {
defaultSrc: ["'self'", ...],
fontSrc: ["'self'", ...],
imgSrc: ["'self'", ...],
scriptSrc: ["'self'", ...],
styleSrc: ["'self'", ...],
connectSrc: ["'self'", ...],
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment