-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvercel.json
113 lines (113 loc) · 2.33 KB
/
vercel.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"regions": ["fra1"],
"headers": [
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, s-maxage=3600, maxage=86400, stale-while-revalidate=300, stale-if-error=86400"
}
]
},
{
"source": "(.*)",
"headers": [
{
"key": "X-Frame-Options",
"value": "SAMEORIGIN"
}
]
},
{
"source": "/.well-known/(.*)",
"headers": [
{
"key": "Content-Type",
"value": "text/plain"
}
]
}
],
"rewrites": [
{
"source": "/favicon.ico",
"destination": "/assets/img/favicon.png"
},
{
"source": "/((?!assets|security.txt|warrant.txt|publickey.txt|me|.well-known))(.*)",
"has": [
{
"type": "header",
"key": "host",
"value": "me.floo.fi"
}
],
"destination": "/me/index.html"
},
{
"source": "/",
"has": [
{
"type": "header",
"key": "host",
"value": "me.floo.fi"
}
],
"destination": "/me/index.html"
},
{
"source": "/((?!assets|pages|security.txt|warrant.txt|publickey.txt|.well-known))(.*)",
"missing": [
{
"type": "header",
"key": "host",
"value": "me.floo.fi"
}
],
"destination": "/app.html"
},
{
"source": "/.well-known/security.txt",
"destination": "/security.txt"
}
],
"redirects": [
{
"source": "/pubkey",
"destination": "/publickey.txt"
},
{
"source": "/warrant",
"destination": "/warrant.txt"
},
{
"source": "/legal/notices",
"destination": "/legal/disclaimers"
},
{
"source": "/legal/branding",
"destination": "/legal/disclaimers"
},
{
"source": "/legal/license",
"destination": "/legal/disclaimers"
},
{
"source": "/assets/favicon2.svg",
"destination": "/assets/img/favicon.png"
},
{
"source": "/assets/favicon.svg",
"destination": "/assets/img/favicon.png"
},
{
"source": "/assets/img/favicon.svg",
"destination": "/assets/img/favicon.png"
},
{
"source": "/assets/img/logo.svg",
"destination": "/assets/img/wordmark.png"
}
]
}