You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2024. It is now read-only.
Hi, I implemented security headers in the following way, but no security headers are showing up when I run it in this program : https://www.serpworx.com/check-security-headers or on https://securityheaders.com/?q=https%3A%2F%2Fmarketinnovationsweb.dev.scadsoftware.com%2Fsignin&followRedirects=on
modules: [
[
'@dansmaculotte/nuxt-security',
{
/* module options */
hsts: {
maxAge: 15552000,
includeSubDomains: true,
preload: true,
},
csp: {
directives: {
defaultSrc: ["'self'"],
scriptSrc: ["'self'"],
objectSrc: ["'self'"],
},
reportOnly: false,
},
referrer: 'same-origin',
permissions: {
notifications: ['none'],
},
additionalHeaders: true,
},
],
]