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:
@@ -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"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
Reference in New Issue
Block a user