This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
forked from PatrickJS/PatrickJS-starter
-
Notifications
You must be signed in to change notification settings - Fork 11
/
superstatic.json
48 lines (48 loc) · 2.49 KB
/
superstatic.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"cleanUrls": [
],
"rewrites": [
{
"source": "**",
"destination": "index.html"
}
],
"redirects": [
],
"headers": [
{
"source": "**/*.*",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Content-Security-Policy",
"value": "base-uri 'self'; default-src 'self'; child-src 'self'; connect-src 'self' http://my.awesome.api ws://localhost:3000; font-src 'self'; form-action 'self'; frame-src 'self'; frame-ancestors 'none'; img-src 'self' data: image/png; media-src 'self'; object-src 'self'; plugin-types application/pdf; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; referrer no-referrer; reflected-xss block; block-all-mixed-content; report-uri http://localhost"
},
{
"key": "X-Content-Security-Policy",
"value": "base-uri 'self'; default-src 'self'; child-src 'self'; connect-src 'self' http://my.awesome.api ws://localhost:3000; font-src 'self'; form-action 'self'; frame-src 'self'; frame-ancestors 'none'; img-src 'self' data: image/png; media-src 'self'; object-src 'self'; plugin-types application/pdf; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; referrer no-referrer; reflected-xss block; block-all-mixed-content; report-uri http://localhost"
},
{
"key": "X-WebKit-CSP",
"value": "base-uri 'self'; default-src 'self'; child-src 'self'; connect-src 'self' http://my.awesome.api ws://localhost:3000; font-src 'self'; form-action 'self'; frame-src 'self'; frame-ancestors 'none'; img-src 'self' data: image/png; media-src 'self'; object-src 'self'; plugin-types application/pdf; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; referrer no-referrer; reflected-xss block; block-all-mixed-content; report-uri http://localhost"
},
{
"key": "X-Frame-Options",
"value": "deny"
},
{
"key": "X-Xss-Protection",
"value": "1; mode=block"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
}
]
}
],
"trailingSlash": false
}