61 lines
947 B
JSON
Raw Normal View History

2016-03-18 11:12:50 +01:00
{
"csrf": {
2017-09-19 10:06:16 +02:00
"enabled": false,
"key": "_csrf",
"secret": "_csrfSecret"
},
"csp": {
2017-09-19 10:06:16 +02:00
"enabled": false,
"policy": {
"default-src": "'self'"
}
},
"p3p": {
2017-09-19 10:06:16 +02:00
"enabled": false,
"value": ""
2016-03-18 11:12:50 +01:00
},
"hsts": {
"enabled": false,
2016-03-18 11:12:50 +01:00
"maxAge": 31536000,
"includeSubDomains": true
},
"xframe": {
"enabled": false,
"value": "SAMEORIGIN"
},
"xss": {
2017-09-19 10:06:16 +02:00
"enabled": false,
"mode": "block"
},
2016-03-18 11:12:50 +01:00
"cors": {
"enabled": true,
"origin": "*",
2016-03-18 11:12:50 +01:00
"expose": [
"WWW-Authenticate",
"Server-Authorization"
],
"maxAge": 31536000,
"credentials": true,
"methods": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"OPTIONS",
"HEAD"
],
"headers": [
"Content-Type",
"Authorization",
"X-Frame-Options",
"Origin"
2016-03-18 11:12:50 +01:00
]
},
"ip": {
"enabled": false,
2016-03-18 11:12:50 +01:00
"whiteList": [],
"blackList": []
}
2016-03-18 11:12:50 +01:00
}