-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRocket.toml
329 lines (298 loc) · 6.79 KB
/
Rocket.toml
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
[default.context]
title = "http.fox"
base_url = "http://localhost:8080"
raw_images_dir = "./static/images/raw"
images_dir = "./static/images"
[default]
status.not_implemented_list = [
204,
205,
208,
226,
304,
305,
307,
308,
401,
403,
406,
407,
410,
411,
412,
413,
414,
415,
416,
417,
418,
420,
422,
423,
424,
425,
426,
428,
431,
444,
450,
451,
497,
498,
499,
500,
501,
502,
503,
504,
506,
507,
510,
511,
522,
523,
599
]
[default.status.list.100]
name = "Continue"
header = [ "Expect" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.100", "Spec" ]
]
[default.status.list.101]
name = "Switching Protocols"
header = [ "Upgrade" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.101", "Spec" ],
[
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Protocol_upgrade_mechanism",
"Protocol upgrade mechanism"
],
[
"https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API",
"WebSockets"
]
]
[default.status.list.102]
name = "Processing"
deprecated = true
header = [ "Expect" ]
links = [
[ "https://tools.ietf.org/html/rfc2518#section-10.1", "Spec" ]
]
[default.status.list.103]
name = "Early Hints"
experimental = true
header = [ "Content-Security-Policy", "Link" ]
links = [
[
"https://html.spec.whatwg.org/multipage/semantics.html#early-hints",
"Spec"
]
]
[default.status.list.200]
name = "OK"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.200", "Spec" ],
[
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods",
"HTTP Request Methods"
]
]
[default.status.list.201]
name = "Created"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.201", "Spec" ]
]
[default.status.list.202]
name = "Accepted"
header = [ "Accept" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.202", "Spec" ]
]
[default.status.list.203]
name = "Non-Authoritative Information"
header = [ "Warning" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.203", "Spec" ],
[
"https://developer.mozilla.org/en-US/docs/Glossary/Proxy_server",
"Proxy server"
]
]
[default.status.list.206]
name = "Partial Content"
header = [ "If-Range", "Range", "Content-Range", "Content-Type" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.206", "Spec" ]
]
[default.status.list.207]
name = "Multi-Status"
note = "The ability to return a collection of resources is part of the WebDAV protocol (it may be received by web applications accessing a WebDAV server). Browsers accessing web pages will never encounter this status code."
links = [
[
"https://www.rfc-editor.org/rfc/rfc4918#section-11.1",
"Spec"
],
[
"https://developer.mozilla.org/en-US/docs/Glossary/WebDAV",
"WebDAV"
],
[
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods",
"HTTP Request Methods"
]
]
[default.status.list.300]
name = "Multiple Choices"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.300", "Spec" ]
]
[default.status.list.301]
name = "Moved Permanently"
note = "Although the specification requires the method and the body to remain unchanged when the redirection is performed, not all user-agents meet this requirement. Use the 301 code only as a response for GET or HEAD methods and use the 308 Permanent Redirect for POST methods instead, as the method change is explicitly prohibited with this status."
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.301", "Spec" ]
]
[default.status.list.302]
name = "Found"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.303", "Spec" ]
]
[default.status.list.303]
name = "See Other"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.303", "Spec" ]
]
[default.status.list.400]
name = "Bad Request"
warning = "The client should not repeat this request without modification."
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.400", "Spec" ]
]
[default.status.list.402]
name = "Payment Required"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.402", "Spec" ],
[
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication",
"HTTP Authentication"
]
]
[default.status.list.404]
name = "Not Found"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.400", "Spec" ],
[
"https://en.wikipedia.org/wiki/HTTP_404",
"Wikipedia: HTTP 404"
],
[
"https://en.wikipedia.org/wiki/Link_rot",
"Wikipedia: Link rot"
]
]
[default.status.list.405]
name = "Method Not Allowed"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.405", "Spec" ]
]
[default.status.list.408]
name = "Request Timeout"
note = "Some servers merely shut down the connection without sending this message"
header = [ "Connection", "X-DNS-Prefetch-Control" ]
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.408", "Spec" ]
]
[default.status.list.409]
name = "Conflict"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.409", "Spec" ]
]
[default.status.list.421]
name = "Misdirected Request"
links = [
[ "https://www.rfc-editor.org/rfc/rfc9110#status.421", "Spec" ]
]
[default.status.list.429]
name = "Too Many Requests"
header = [ "Retry-After" ]
links = [
[
"https://datatracker.ietf.org/doc/html/rfc6585#section-4",
"Spec"
]
]
[default.status.list.508]
name = "Loop Detected"
links = [
[ "https://www.rfc-editor.org/rfc/rfc5842#section-7.2", "Spec" ],
[
"https://developer.mozilla.org/en-US/docs/Glossary/WebDAV",
"WebDAV"
]
]
[default.status.list.509]
name = "Bandwidth Limit Exceeded"
unofficial = true
links = [
[
"https://documentation.cpanel.net/display/CKB/HTTP+Error+Codes+and+Quick+Fixes",
"cPanel Docs"
]
]
[default.status.list.521]
name = "Web Server Is Down"
unofficial = true
links = [
[
"https://developers.cloudflare.com/support/troubleshooting/cloudflare-errors/troubleshooting-cloudflare-5xx-errors/#error-521-web-server-is-down",
"Cloudflare Docs"
]
]
[default.status.list.525]
name = "SSL Handshake Failed"
unofficial = true
links = [
[
"https://developers.cloudflare.com/support/troubleshooting/cloudflare-errors/troubleshooting-cloudflare-5xx-errors/#error-525-ssl-handshake-failed",
"Cloudflare Docs"
],
[
"https://www.cloudflare.com/learning/ssl/what-happens-in-a-tls-handshake/https://www.cloudflare.com/learning/ssl/what-happens-in-a-tls-handshake/",
"SSL Handshake"
]
]
[default.status.list.530]
name = "Site Frozen"
unofficial = true
links = [
[
"https://developers.cloudflare.com/support/troubleshooting/cloudflare-errors/troubleshooting-cloudflare-5xx-errors/#error-530",
"Cloudflare Docs"
]
]
[[default.credits.list]]
name = "Freeplay"
url = "https://kitsunes.club/@freeplay"
codes = [
102,
202,
207,
400,
402,
405,
408,
409,
421,
429,
508,
509,
521,
525,
530
]
[[default.credits.list]]
name = "AnCuRuadh"
url = "https://awwter.online/@AnCuRuadh"
codes = [ 100, 101, 103, 200, 201, 203, 206, 300, 301, 302, 303, 404 ]