Added Referrer Policy
This commit is contained in:
parent
3371651990
commit
1266e1f02b
@ -26,5 +26,8 @@ module.exports = function (req, res, next) {
|
|||||||
// -> Disable IE Compatibility Mode
|
// -> Disable IE Compatibility Mode
|
||||||
res.set('X-UA-Compatible', 'IE=edge')
|
res.set('X-UA-Compatible', 'IE=edge')
|
||||||
|
|
||||||
|
// -> Disables referrer header when navigating to a different origin
|
||||||
|
res.set('Referrer-Policy', 'same-origin')
|
||||||
|
|
||||||
return next()
|
return next()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user