-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmimisbrunnrconfig.json
More file actions
634 lines (634 loc) · 22.3 KB
/
mimisbrunnrconfig.json
File metadata and controls
634 lines (634 loc) · 22.3 KB
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
[
{
"DisplayName": "Server Host",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Server:dns:1",
"Description": "IP address the server listens on. Use 0.0.0.0 to listen on all interfaces.",
"Keywords": "host,bind,listen,address,ip",
"FieldName": "ServerHost",
"InputType": "text",
"ParamFieldName": "ServerHost",
"DefaultValue": "0.0.0.0",
"Placeholder": "0.0.0.0",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Base URL",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Server:dns:1",
"Description": "Public-facing URL used for redirect links and email callbacks. Include protocol and port.",
"Keywords": "url,base,public,external,domain",
"FieldName": "BaseURL",
"InputType": "text",
"ParamFieldName": "BaseURL",
"DefaultValue": "http://192.168.50.150:8443",
"Placeholder": "http://192.168.50.150:8443",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Max Projects",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Server:dns:1",
"Description": "Maximum number of projects that can be created on this instance.",
"Keywords": "projects,limit,max,tenant",
"FieldName": "MaxProjects",
"InputType": "number",
"ParamFieldName": "MaxProjects",
"DefaultValue": "250",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database Host",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "PostgreSQL server hostname or IP address.",
"Keywords": "database,host,postgres,pg,db",
"FieldName": "DBHost",
"InputType": "text",
"ParamFieldName": "DBHost",
"DefaultValue": "127.0.0.1",
"Placeholder": "127.0.0.1",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database Port",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "PostgreSQL server port.",
"Keywords": "database,port,postgres,pg,db",
"FieldName": "DBPort",
"InputType": "number",
"ParamFieldName": "DBPort",
"DefaultValue": "5432",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database User",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "PostgreSQL superuser or role with CREATE DATABASE privileges.",
"Keywords": "database,user,username,postgres,pg,db",
"FieldName": "DBUser",
"InputType": "text",
"ParamFieldName": "DBUser",
"DefaultValue": "postgres",
"Placeholder": "postgres",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database Password",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "Password for the PostgreSQL user.",
"Keywords": "database,password,postgres,pg,db,secret",
"FieldName": "DBPassword",
"InputType": "password",
"ParamFieldName": "DBPassword",
"DefaultValue": "",
"Placeholder": "",
"EnumValues": {},
"Required": true,
"Hidden": false
},
{
"DisplayName": "Database Name",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "Name of the PostgreSQL database.",
"Keywords": "database,name,postgres,pg,db",
"FieldName": "DBName",
"InputType": "text",
"ParamFieldName": "DBName",
"DefaultValue": "mimisbrunnr",
"Placeholder": "mimisbrunnr",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database SSL Mode",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "PostgreSQL SSL connection mode. Use 'disable' for local connections, 'require' or higher for remote.",
"Keywords": "database,ssl,tls,security,postgres,pg,db",
"FieldName": "DBSSLMode",
"InputType": "enum",
"ParamFieldName": "DBSSLMode",
"DefaultValue": "disable",
"Placeholder": "",
"EnumValues": {
"disable": "disable",
"require": "require",
"verify-ca": "verify-ca",
"verify-full": "verify-full"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Database Max Connections",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Database:database:2",
"Description": "Max connections per pool. Mimisbrunnr and PostgREST each open a pool of this size. Ensure PostgreSQL max_connections >= 2x this value plus headroom.",
"Keywords": "database,connections,pool,max,postgres,pg,db",
"FieldName": "DBMaxConns",
"InputType": "number",
"ParamFieldName": "DBMaxConns",
"DefaultValue": "25",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Admin Secret",
"Category": "Mimisbrunnr Server:dns",
"Subcategory": "Platform:key:3",
"Description": "Secret key for platform admin API access. Auto-generated on first install.",
"Keywords": "admin,secret,key,platform,api",
"FieldName": "AdminSecret",
"InputType": "password",
"ParamFieldName": "AdminSecret",
"DefaultValue": "{{newguid()}}",
"Placeholder": "",
"EnumValues": {},
"Required": true,
"Hidden": false
},
{
"DisplayName": "Access Token TTL",
"Category": "Auth and Email:email",
"Subcategory": "Authentication:key:1",
"Description": "How long access tokens remain valid. Uses Go duration format (e.g. 1h, 30m, 24h).",
"Keywords": "auth,token,access,ttl,expiry,duration,jwt",
"FieldName": "AccessTokenTTL",
"InputType": "text",
"ParamFieldName": "AccessTokenTTL",
"DefaultValue": "1h",
"Placeholder": "1h",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Refresh Token TTL",
"Category": "Auth and Email:email",
"Subcategory": "Authentication:key:1",
"Description": "How long refresh tokens remain valid. Uses Go duration format (e.g. 720h = 30 days).",
"Keywords": "auth,token,refresh,ttl,expiry,duration,jwt",
"FieldName": "RefreshTokenTTL",
"InputType": "text",
"ParamFieldName": "RefreshTokenTTL",
"DefaultValue": "720h",
"Placeholder": "720h",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "SMTP Host",
"Category": "Auth and Email:email",
"Subcategory": "SMTP:email:2",
"Description": "Hostname of the outgoing mail server.",
"Keywords": "smtp,email,mail,host,server",
"FieldName": "SMTPHost",
"InputType": "text",
"ParamFieldName": "SMTPHost",
"DefaultValue": "",
"Placeholder": "smtp.example.com",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "SMTP Port",
"Category": "Auth and Email:email",
"Subcategory": "SMTP:email:2",
"Description": "SMTP server port. Common values: 587 (STARTTLS), 465 (SSL), 25 (unencrypted).",
"Keywords": "smtp,email,mail,port",
"FieldName": "SMTPPort",
"InputType": "number",
"ParamFieldName": "SMTPPort",
"DefaultValue": "587",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "SMTP User",
"Category": "Auth and Email:email",
"Subcategory": "SMTP:email:2",
"Description": "Username for SMTP authentication.",
"Keywords": "smtp,email,mail,user,username,login",
"FieldName": "SMTPUser",
"InputType": "text",
"ParamFieldName": "SMTPUser",
"DefaultValue": "",
"Placeholder": "user@example.com",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "SMTP Password",
"Category": "Auth and Email:email",
"Subcategory": "SMTP:email:2",
"Description": "Password for SMTP authentication.",
"Keywords": "smtp,email,mail,password,secret",
"FieldName": "SMTPPassword",
"InputType": "password",
"ParamFieldName": "SMTPPassword",
"DefaultValue": "",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "SMTP From Address",
"Category": "Auth and Email:email",
"Subcategory": "SMTP:email:2",
"Description": "Email address used as the sender for outgoing messages.",
"Keywords": "smtp,email,mail,from,sender,address",
"FieldName": "SMTPFrom",
"InputType": "text",
"ParamFieldName": "SMTPFrom",
"DefaultValue": "",
"Placeholder": "noreply@example.com",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Redis Enabled",
"Category": "Infrastructure:build",
"Subcategory": "Redis:database:1",
"Description": "Enable Redis for caching and rate limiting. When disabled, an in-memory cache is used instead.",
"Keywords": "redis,cache,enabled,toggle",
"FieldName": "RedisEnabled",
"InputType": "checkbox",
"ParamFieldName": "RedisEnabled",
"DefaultValue": "True",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Redis Host",
"Category": "Infrastructure:build",
"Subcategory": "Redis:database:1",
"Description": "Redis server hostname or IP address.",
"Keywords": "redis,host,server,address",
"FieldName": "RedisHost",
"InputType": "text",
"ParamFieldName": "RedisHost",
"DefaultValue": "127.0.0.1",
"Placeholder": "127.0.0.1",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Redis Port",
"Category": "Infrastructure:build",
"Subcategory": "Redis:database:1",
"Description": "Redis server port.",
"Keywords": "redis,port",
"FieldName": "RedisPort",
"InputType": "number",
"ParamFieldName": "RedisPort",
"DefaultValue": "6379",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Redis Password",
"Category": "Infrastructure:build",
"Subcategory": "Redis:database:1",
"Description": "Password for Redis authentication. Leave empty if Redis has no password.",
"Keywords": "redis,password,secret,auth",
"FieldName": "RedisPassword",
"InputType": "password",
"ParamFieldName": "RedisPassword",
"DefaultValue": "",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Rate Limiting Enabled",
"Category": "Infrastructure:build",
"Subcategory": "Rate Limiting:dns:2",
"Description": "Enable request rate limiting. Requires Redis for distributed rate limiting.",
"Keywords": "rate,limit,throttle,enabled,toggle",
"FieldName": "RateLimitEnabled",
"InputType": "checkbox",
"ParamFieldName": "RateLimitEnabled",
"DefaultValue": "True",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Rate Limit Per IP",
"Category": "Infrastructure:build",
"Subcategory": "Rate Limiting:dns:2",
"Description": "Maximum requests per minute per IP address.",
"Keywords": "rate,limit,ip,requests,per,minute",
"FieldName": "RateLimitPerIP",
"InputType": "number",
"ParamFieldName": "RateLimitPerIP",
"DefaultValue": "100",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Rate Limit Per Project",
"Category": "Infrastructure:build",
"Subcategory": "Rate Limiting:dns:2",
"Description": "Maximum requests per minute per project.",
"Keywords": "rate,limit,project,requests,per,minute",
"FieldName": "RateLimitPerProject",
"InputType": "number",
"ParamFieldName": "RateLimitPerProject",
"DefaultValue": "1000",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Realtime Max Per Project",
"Category": "Infrastructure:build",
"Subcategory": "Realtime:dns:3",
"Description": "Maximum concurrent WebSocket connections per project.",
"Keywords": "realtime,websocket,connections,project,max,limit",
"FieldName": "RTMaxPerProject",
"InputType": "number",
"ParamFieldName": "RTMaxPerProject",
"DefaultValue": "200",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Realtime Max Global",
"Category": "Infrastructure:build",
"Subcategory": "Realtime:dns:3",
"Description": "Maximum total concurrent WebSocket connections across all projects.",
"Keywords": "realtime,websocket,connections,global,max,limit,total",
"FieldName": "RTMaxGlobal",
"InputType": "number",
"ParamFieldName": "RTMaxGlobal",
"DefaultValue": "5000",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Storage Max File Size",
"Category": "Storage and Metrics:build",
"Subcategory": "Storage:build:1",
"Description": "Maximum allowed file upload size. Supports units: B, KB, MB, GB (e.g. 500MB, 1GB).",
"Keywords": "storage,upload,file,size,max,limit",
"FieldName": "StorageMaxFileSize",
"InputType": "text",
"ParamFieldName": "StorageMaxFileSize",
"DefaultValue": "500MB",
"Placeholder": "500MB",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Storage Project Quota",
"Category": "Storage and Metrics:build",
"Subcategory": "Storage:build:1",
"Description": "Maximum storage per project. 0 = unlimited.",
"Keywords": "storage,quota,project,limit,disk,space",
"FieldName": "StorageProjectQuota",
"InputType": "text",
"ParamFieldName": "StorageProjectQuota",
"DefaultValue": "0",
"Placeholder": "0",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Metrics Enabled",
"Category": "Storage and Metrics:build",
"Subcategory": "Metrics:build:2",
"Description": "Enable Prometheus metrics endpoint at /metrics.",
"Keywords": "metrics,prometheus,monitoring,enabled,toggle",
"FieldName": "MetricsEnabled",
"InputType": "checkbox",
"ParamFieldName": "MetricsEnabled",
"DefaultValue": "True",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "Per-Project Metrics",
"Category": "Storage and Metrics:build",
"Subcategory": "Metrics:build:2",
"Description": "Enable per-project metrics. Only recommended for < 100 projects.",
"Keywords": "metrics,per,project,cardinality,prometheus",
"FieldName": "MetricsPerProject",
"InputType": "checkbox",
"ParamFieldName": "MetricsPerProject",
"DefaultValue": "False",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PostgREST Enabled",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PostgREST:build:1",
"Description": "Enable the PostgREST sidecar for automatic REST API generation from PostgreSQL schemas.",
"Keywords": "postgrest,rest,api,sidecar,enabled,toggle",
"FieldName": "PostgRESTEnabled",
"InputType": "checkbox",
"ParamFieldName": "PostgRESTEnabled",
"DefaultValue": "True",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PostgREST Max Rows",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PostgREST:build:1",
"Description": "Maximum number of rows returned per REST API query.",
"Keywords": "postgrest,rest,api,rows,max,limit,pagination",
"FieldName": "PostgRESTMaxRows",
"InputType": "number",
"ParamFieldName": "PostgRESTMaxRows",
"DefaultValue": "1000",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PgDog Pooling Mode",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PgDog Connection Pooler:build:2",
"Description": "Connection pooling strategy. Tier 1 uses per-project roles; Tier 2 pools through a shared service role.",
"Keywords": "pgdog,pool,connection,pooler,mode,tier,sidecar",
"FieldName": "PgDogPoolingMode",
"InputType": "enum",
"ParamFieldName": "PgDogPoolingMode",
"DefaultValue": "service_role",
"Placeholder": "",
"EnumValues": {
"per_project_role": "Per Project Role (Tier 1)",
"service_role": "Service Role (Tier 2)"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PgDog Service Password",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PgDog Connection Pooler:build:2",
"Description": "Password for the shared _mimisbrunnr_service role. Required for Tier 2 pooling. Auto-generated on first install.",
"Keywords": "pgdog,service,password,secret,pool,tier2",
"FieldName": "PgDogServicePassword",
"InputType": "password",
"ParamFieldName": "PgDogServicePassword",
"DefaultValue": "{{newguid()}}",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PgDog Pool Size",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PgDog Connection Pooler:build:2",
"Description": "Number of server connections per pool. Each unique (database, user) pair gets its own pool of this size.",
"Keywords": "pgdog,pool,size,connections,sidecar",
"FieldName": "PgDogPoolSize",
"InputType": "number",
"ParamFieldName": "PgDogPoolSize",
"DefaultValue": "10",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "PgDog Statement Timeout",
"Category": "Sidecars and Extensions:build",
"Subcategory": "PgDog Connection Pooler:build:2",
"Description": "Statement timeout in milliseconds",
"Keywords": "pgdog,timeout,statement,query,milliseconds",
"FieldName": "PgDogStatementTimeout",
"InputType": "number",
"ParamFieldName": "PgDogStatementTimeout",
"DefaultValue": "30000",
"Placeholder": "",
"EnumValues": {},
"Required": false,
"Hidden": false
},
{
"DisplayName": "pgvector Enabled",
"Category": "Sidecars and Extensions:build",
"Subcategory": "Extensions:build:3",
"Description": "Enable the pgvector extension for vector similarity search and embeddings storage.",
"Keywords": "pgvector,vector,embeddings,ai,extension,similarity",
"FieldName": "PgvectorEnabled",
"InputType": "checkbox",
"ParamFieldName": "PgvectorEnabled",
"DefaultValue": "False",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "pg_cron Enabled",
"Category": "Sidecars and Extensions:build",
"Subcategory": "Extensions:build:3",
"Description": "Enable the pg_cron extension for scheduled database jobs.",
"Keywords": "pgcron,cron,schedule,jobs,extension,timer",
"FieldName": "PgCronEnabled",
"InputType": "checkbox",
"ParamFieldName": "PgCronEnabled",
"DefaultValue": "False",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
},
{
"DisplayName": "pg_stat_statements Enabled",
"Category": "Sidecars and Extensions:build",
"Subcategory": "Extensions:build:3",
"Description": "Enable the pg_stat_statements extension for query performance tracking.",
"Keywords": "pgstats,statistics,statements,performance,extension,queries",
"FieldName": "PgStatsEnabled",
"InputType": "checkbox",
"ParamFieldName": "PgStatsEnabled",
"DefaultValue": "False",
"Placeholder": "",
"EnumValues": {
"False": "false",
"True": "true"
},
"Required": false,
"Hidden": false
}
]