-
Notifications
You must be signed in to change notification settings - Fork 1
/
odd-box-schema-v2.2.json
492 lines (492 loc) · 12.9 KB
/
odd-box-schema-v2.2.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
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "OddBoxV2Config",
"type": "object",
"required": [
"version"
],
"properties": {
"admin_api_port": {
"description": "The port for the admin api. If this is not set, the admin api will not be started. This setting also enabled the web-ui on the same port.",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"alpn": {
"description": "Defaults to true. Lets you enable/disable h2/http11 tls alpn algs during initial connection phase.",
"default": true,
"type": [
"boolean",
"null"
]
},
"auto_start": {
"default": true,
"type": [
"boolean",
"null"
]
},
"default_log_format": {
"default": "standard",
"allOf": [
{
"$ref": "#/definitions/LogFormat"
}
]
},
"dir_server": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/DirServer"
}
},
"env_vars": {
"description": "Environment variables configured here will be made available to all processes started by odd-box.",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/EnvVar"
}
},
"hosted_process": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/InProcessSiteConfig"
}
},
"http_port": {
"description": "The port on which to listen for http requests. Defaults to 8080.",
"default": 8080,
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"ip": {
"type": [
"string",
"null"
],
"format": "ip"
},
"lets_encrypt_account_email": {
"description": "If you want to use lets-encrypt for generating certificates automatically for your sites",
"type": [
"string",
"null"
]
},
"log_level": {
"description": "Log level of the odd-box application itself. Defaults to Info. For hosted processes, you can instead set the log level for site individually.",
"default": "Info",
"anyOf": [
{
"$ref": "#/definitions/LogLevel"
},
{
"type": "null"
}
]
},
"port_range_start": {
"description": "The port range start is used to determine which ports to use for hosted processes.",
"default": 4200,
"type": "integer",
"format": "uint16",
"minimum": 0.0
},
"remote_target": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/RemoteSiteConfig"
}
},
"root_dir": {
"type": [
"string",
"null"
]
},
"tls_port": {
"description": "The port on which to listen for https requests. Defaults to 4343.",
"default": 4343,
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
},
"version": {
"description": "The schema version - you do not normally need to set this, it is set automatically when you save the configuration.",
"allOf": [
{
"$ref": "#/definitions/OddBoxConfigVersion"
}
]
}
},
"definitions": {
"Backend": {
"type": "object",
"required": [
"address",
"port"
],
"properties": {
"address": {
"type": "string"
},
"hints": {
"description": "H2C,H2,H2CPK - used to signal use of prior knowledge http2 or http2 over clear text.",
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/Hint"
}
},
"https": {
"type": [
"boolean",
"null"
]
},
"port": {
"description": "This can be zero in case the backend is a hosted process, in which case we will need to resolve the current active_port",
"type": "integer",
"format": "uint16",
"minimum": 0.0
}
}
},
"DirServer": {
"description": "A directory server configuration allows you to serve files from a directory on the local filesystem. Both unencrypted (http) and encrypted (https) connections are supported, either self-signed or thru lets-encrypt. You can specify rules for how the cache should behave, and you can also specify rules for how the files should be served.",
"type": "object",
"required": [
"dir",
"host_name"
],
"properties": {
"capture_subdomains": {
"description": "Instead of only listening to yourdomain.com, you can capture subdomains which means this site will also respond to requests for *.yourdomain.com",
"type": [
"boolean",
"null"
]
},
"dir": {
"type": "string"
},
"enable_directory_browsing": {
"type": [
"boolean",
"null"
]
},
"enable_lets_encrypt": {
"type": [
"boolean",
"null"
]
},
"host_name": {
"description": "This is the hostname that the site will respond to.",
"type": "string"
},
"redirect_to_https": {
"type": [
"boolean",
"null"
]
},
"render_markdown": {
"type": [
"boolean",
"null"
]
}
}
},
"EnvVar": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"Hint": {
"oneOf": [
{
"description": "Server supports http2 over tls",
"type": "string",
"enum": [
"H2"
]
},
{
"description": "Server supports http2 via clear text by using an upgrade header",
"type": "string",
"enum": [
"H2C"
]
},
{
"description": "Server supports http2 via clear text by using prior knowledge",
"type": "string",
"enum": [
"H2CPK"
]
},
{
"description": "Server supports http1.x",
"type": "string",
"enum": [
"H1"
]
},
{
"description": "Server supports http3",
"type": "string",
"enum": [
"H3"
]
}
]
},
"InProcessSiteConfig": {
"type": "object",
"required": [
"bin",
"host_name"
],
"properties": {
"args": {
"description": "Arguments to pass to the binary when starting it.",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"auto_start": {
"description": "Set this to false if you do not want this site to start automatically when odd-box starts. This also means that the site is excluded from the start_all command.",
"type": [
"boolean",
"null"
]
},
"bin": {
"description": "The binary to start. This can be a path to a binary or a command that is in the PATH.",
"type": "string"
},
"capture_subdomains": {
"description": "If you wish to use wildcard routing for any subdomain under the 'host_name'",
"type": [
"boolean",
"null"
]
},
"dir": {
"description": "Working directory for the process. If this is not set, the current working directory will be used.",
"type": [
"string",
"null"
]
},
"disable_tcp_tunnel_mode": {
"description": "This is mostly useful in case the target uses SNI sniffing/routing",
"type": [
"boolean",
"null"
]
},
"enable_lets_encrypt": {
"description": "If you want to use lets-encrypt for generating certificates automatically for this site. Defaults to false. This feature will disable tcp tunnel mode.",
"type": [
"boolean",
"null"
]
},
"env_vars": {
"description": "Environment variables to set for the process.",
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/EnvVar"
}
},
"exclude_from_start_all": {
"description": "If you wish to exclude this site from the start_all command. This setting was previously called \"disable\" but has been renamed for clarity",
"type": [
"boolean",
"null"
]
},
"forward_subdomains": {
"description": "If you wish to use the subdomain from the request in forwarded requests: test.example.com -> internal.site vs test.example.com -> test.internal.site",
"type": [
"boolean",
"null"
]
},
"hints": {
"description": "H1,H2,H2C,H2CPK,H3 - empty means H1 is expected to work with passthru: everything else will be using terminating mode.",
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/Hint"
}
},
"host_name": {
"type": "string"
},
"https": {
"type": [
"boolean",
"null"
]
},
"log_format": {
"description": "The log format to use for this site. If this is not set, the default log format will be used. Currently the only supported log formats are \"standard\" and \"dotnet\".",
"anyOf": [
{
"$ref": "#/definitions/LogFormat"
},
{
"type": "null"
}
]
},
"log_level": {
"description": "If you wish to set a specific loglevel for this hosted process. Defaults to \"Info\". If this level is lower than the global log_level you will get the message elevated to the global log level instead but tagged with the actual log level.",
"anyOf": [
{
"$ref": "#/definitions/LogLevel"
},
{
"type": "null"
}
]
},
"port": {
"description": "If this is set to None, the next available port will be used. Starting from the global port_range_start",
"type": [
"integer",
"null"
],
"format": "uint16",
"minimum": 0.0
}
}
},
"LogFormat": {
"type": "string",
"enum": [
"standard",
"dotnet"
]
},
"LogLevel": {
"type": "string",
"enum": [
"Trace",
"Debug",
"Info",
"Warn",
"Error"
]
},
"OddBoxConfigVersion": {
"type": "string",
"enum": [
"Unmarked",
"V1",
"V2"
]
},
"RemoteSiteConfig": {
"type": "object",
"required": [
"backends",
"host_name"
],
"properties": {
"backends": {
"type": "array",
"items": {
"$ref": "#/definitions/Backend"
}
},
"capture_subdomains": {
"description": "If you wish to use wildcard routing for any subdomain under the 'host_name'",
"type": [
"boolean",
"null"
]
},
"disable_tcp_tunnel_mode": {
"description": "This is mostly useful in case the target uses SNI sniffing/routing",
"type": [
"boolean",
"null"
]
},
"enable_lets_encrypt": {
"description": "If you want to use lets-encrypt for generating certificates automatically for this site. Defaults to false. This feature will disable tcp tunnel mode.",
"type": [
"boolean",
"null"
]
},
"forward_subdomains": {
"description": "If you wish to use the subdomain from the request in forwarded requests: test.example.com -> internal.site vs test.example.com -> test.internal.site",
"type": [
"boolean",
"null"
]
},
"host_name": {
"type": "string"
},
"keep_original_host_header": {
"description": "If you wish to pass along the incoming request host header to the backend rather than the host name of the backends. Defaults to false.",
"type": [
"boolean",
"null"
]
}
}
}
}
}