corrected http headers

This commit is contained in:
2018-04-25 11:18:06 -04:00
parent 9aee2158b2
commit 71e2448d24
+17 -15
View File
@@ -12,11 +12,25 @@
], ],
"headers": [ "headers": [
{ {
"source": "**/*", "source": "**",
"headers": [{ "headers": [
{
"key": "X-Content-Type-Options", "key": "X-Content-Type-Options",
"value": "nosniff" "value": "nosniff"
}] },
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{
"key": "X-DNS-Prefetch-Control",
"value": "off"
}
]
}, },
{ {
"source" : "**/", "source" : "**/",
@@ -25,21 +39,9 @@
"key": "Cache-Control", "key": "Cache-Control",
"value": "max-age=3600" "value": "max-age=3600"
}, },
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
},
{ {
"key": "X-UA-Compatible", "key": "X-UA-Compatible",
"value": "IE=edge" "value": "IE=edge"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
} }
] ]
}, },