-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathstaticwebapp.config.json
60 lines (60 loc) · 2.15 KB
/
staticwebapp.config.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
49
50
51
52
53
54
55
56
57
58
59
60
{
"routes": [
{
"route": "/static/*",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
}
},
{
"route": "/favicon.ico",
"headers": {
"Cache-Control": "public, max-age=86400"
}
},
{
"route": "/logo_filterlists.png",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
}
},
{
"route": "/icon_filterlists.png",
"headers": {
"Cache-Control": "public, max-age=31536000, immutable"
}
},
{
"route": "/manifest.json",
"headers": {
"Cache-Control": "public, max-age=86400"
}
},
{
"route": "/robots.txt",
"headers": {
"Cache-Control": "public, max-age=86400"
}
},
{
"route": "/tpl-redirect.js",
"headers": {
"Cache-Control": "public, max-age=86400"
}
},
{
"route": "/tpl.html",
"headers": {
"Cache-Control": "public, max-age=86400"
}
}
],
"navigationFallback": {
"rewrite": "/index.html"
},
"trailingSlash": "never",
"globalHeaders": {
"Content-Security-Policy": "upgrade-insecure-requests; default-src 'none'; base-uri 'none'; frame-ancestors 'none'; form-action 'none'; connect-src 'self' https://api.filterlists.com; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self';",
"Permissions-Policy": "accelerometer=(), ambient-light-sensor=(), attribution-reporting=(), autoplay=(), battery=(), bluetooth=(), browsing-topics=(), camera=(), compute-pressure=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), gamepad=(), geolocation=(), gyroscope=(), hid=(), identity-credentials-get=(), idle-detection=(), local-fonts=(), magnetometer=(), microphone=(), midi=(), otp-credentials=(), payment=(), picture-in-picture=(), publickey-credentials-create=(), publickey-credentials-get=(), screen-wake-lock=(), serial=(), speaker-selection=(), storage-access=(), usb=(), web-share=(), window-management=(), xr-spatial-tracking=()"
}
}