49e9316685
* feat(jackett): change config to support local domain * feat(matrix-conduit): change config to support local domain * feat(mealie): change config to support local domain * feat(memos): change config to support local domain * feat(mind): change config to support local domain * feat(minecraft-server): change config to support local domain * feat(mixpost): change config to support local domain * feat(mixpost-pro): change config to support local domain * feat(moneroblock): change config to support local domain * feat(monerod): change config to support local domain * feat(monica): change config to support local domain * feat(movary): change config to support local domain * feat(mstream): change config to support local domain * feat(mylar3): change config to support local domain * feat(n8n): change config to support local domain * feat(navidrome): change config to support local domain * feat(nitter): change config to support local domain * feat(nocodb): change config to support local domain * feat(nodered): change config to support local domain * feat(onedev): change config to support local domain * feat(openbooks): change config to support local domain * feat(overseerr): change config to support local domain * feat(owncloud): change config to support local domain
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
||
"$schema": "../schema.json",
|
||
"name": "Conduit",
|
||
"port": 6167,
|
||
"available": true,
|
||
"exposable": true,
|
||
"force_expose": true,
|
||
"no_gui": true,
|
||
"id": "matrix-conduit",
|
||
"tipi_version": 2,
|
||
"version": "0.5.0",
|
||
"categories": ["social"],
|
||
"description": "Conduit is a fast Matrix homeserver that’s easy to set up and just works. You can install it on a mini-computer like the Raspberry Pi to host Matrix for your family, friends or company.",
|
||
"short_desc": "Conduit is a simple, fast and reliable chat server written in Rust",
|
||
"author": "Timo Kösters",
|
||
"source": "https://gitlab.com/famedly/conduit",
|
||
"website": "https://matrix.org/docs/projects/server/conduit",
|
||
"form_fields": [
|
||
{
|
||
"type": "boolean",
|
||
"label": "Allow Registration",
|
||
"hint": "WARNING! First user will be admin",
|
||
"required": false,
|
||
"env_variable": "ALLOW_REGISTRATION"
|
||
},
|
||
{
|
||
"type": "boolean",
|
||
"label": "Allow Federation",
|
||
"required": false,
|
||
"env_variable": "ALLOW_FEDERATION"
|
||
},
|
||
{
|
||
"type": "array",
|
||
"label": "Trusted Servers",
|
||
"hint": "[\"matrix.org\"]",
|
||
"regex": "^\\[((\"[^\"]*\")(, ?(\"[^\"]*\"))*)?\\]$",
|
||
"pattern_error": "Must be in list of domain names format",
|
||
"required": false,
|
||
"env_variable": "TRUSTED_SERVERS"
|
||
},
|
||
{
|
||
"type": "number",
|
||
"label": "Max request size",
|
||
"hint": "In bytes, for example 20000000",
|
||
"required": false,
|
||
"env_variable": "MAX_REQUEST_SIZE"
|
||
},
|
||
{
|
||
"type": "text",
|
||
"label": "Loggin Level",
|
||
"hint": "Available levels: error, warn, info, debug, trace",
|
||
"placeholder": "-warn,rocket=off,_=off,sled=off",
|
||
"required": false,
|
||
"env_variable": "LOG"
|
||
}
|
||
]
|
||
}
|