2023-05-08 13:17:31 +00:00
{
"$schema" : "../schema.json" ,
"name" : "Conduit" ,
"port" : 6167 ,
"available" : true ,
"exposable" : true ,
2023-05-10 09:16:45 +00:00
"force_expose" : true ,
2023-05-08 13:17:31 +00:00
"no_gui" : true ,
"id" : "matrix-conduit" ,
2024-06-13 01:06:46 +00:00
"tipi_version" : 6 ,
"version" : "0.8.0" ,
"categories" : [ "social" ] ,
2023-05-08 13:17:31 +00:00
"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"
} ,
{
2023-08-15 18:38:18 +00:00
"type" : "text" ,
2023-05-08 13:17:31 +00:00
"label" : "Trusted Servers" ,
2023-08-13 17:00:10 +00:00
"hint" : "List of domain names" ,
"placeholder" : "[\"matrix.org\"]" ,
2023-05-09 07:20:17 +00:00
"regex" : "^\\[((\"[^\"]*\")(, ?(\"[^\"]*\"))*)?\\]$" ,
"pattern_error" : "Must be in list of domain names format" ,
2023-05-08 13:17:31 +00:00
"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" ,
2023-08-13 17:00:10 +00:00
"placeholder" : "warn,rocket=off,_=off,sled=off" ,
2023-05-08 13:17:31 +00:00
"required" : false ,
"env_variable" : "LOG"
2023-08-13 17:00:10 +00:00
} ,
{
2023-08-15 18:38:18 +00:00
"type" : "text" ,
2023-08-13 17:00:10 +00:00
"label" : "TURN URIs" ,
"hint" : "List of TURN server URIs turn:/turns:" ,
"placeholder" : "[\"turn:<your server domain>?transport=udp\", \"turn:<your server domain>?transport=tcp\"]" ,
"required" : false ,
"env_variable" : "TURN_URIS"
} ,
{
"type" : "password" ,
"label" : "TURN Secret" ,
"required" : false ,
"env_variable" : "TURN_SECRET"
2023-05-08 13:17:31 +00:00
}
2023-10-29 19:43:17 +00:00
] ,
2024-06-13 01:06:46 +00:00
"supported_architectures" : [ "arm64" , "amd64" ]
2023-05-08 13:17:31 +00:00
}