1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-23 02:21:16 -04:00

corrected http headers

This commit is contained in:
2018-04-25 11:18:06 -04:00
parent 9aee2158b2
commit 71e2448d24

View File

@@ -12,11 +12,25 @@
],
"headers": [
{
"source": "**/*",
"headers": [{
"key": "X-Content-Type-Options",
"value": "nosniff"
}]
"source": "**",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-DNS-Prefetch-Control",
"value": "off"
}
]
},
{
"source" : "**/",
@@ -25,21 +39,9 @@
"key": "Cache-Control",
"value": "max-age=3600"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-UA-Compatible",
"value": "IE=edge"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
},