mirror of
https://github.com/YunoHost-Apps/conduit_ynh.git
synced 2024-09-03 18:16:30 +02:00
commit
7c76e3618a
4 changed files with 30 additions and 27 deletions
|
@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
Conduit is a lightweight open-source server implementation of the Matrix Specification with a focus on easy setup and low system requirements. That means you can make your own Conduit setup in just a few minutes.
|
||||
Conduit keeps things simple, it's a single binary with an embedded database and can be much faster than other server implementations in some cases.
|
||||
|
||||
**Shipped version:** 0.6.0~ynh5
|
||||
**Shipped version:** 0.6.0~ynh6
|
||||
## Documentation and resources
|
||||
|
||||
* Official app website: <https://conduit.rs/>
|
||||
|
|
|
@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
|||
Conduit est une implémentation de serveur open source légère de la spécification Matrix avec un accent sur une configuration facile et des exigences système faibles. Cela signifie que vous pouvez créer votre propre configuration Conduit en quelques minutes seulement.
|
||||
Conduit garde les choses simples, c'est un binaire unique avec une base de données intégrée et peut être beaucoup plus rapide que d'autres implémentations de serveur dans certains cas.
|
||||
|
||||
**Version incluse :** 0.6.0~ynh5
|
||||
**Version incluse :** 0.6.0~ynh6
|
||||
## Documentations et ressources
|
||||
|
||||
* Site officiel de l’app : <https://conduit.rs/>
|
||||
|
|
|
@ -6,6 +6,7 @@ location /.well-known/matrix/server {
|
|||
location /.well-known/matrix/client {
|
||||
return 200 '{
|
||||
"m.homeserver": { "base_url": "https://__DOMAIN__" },
|
||||
"org.matrix.msc3575.proxy": { "url": "https://__DOMAIN__" },
|
||||
"im.vector.riot.jitsi": {"preferredDomain": "jitsi.riot.im"},
|
||||
"im.vector.riot.e2ee": {"default": true }
|
||||
}';
|
||||
|
|
|
@ -5,9 +5,9 @@ name = "Conduit"
|
|||
description.en = "Simple, fast and reliable chat server powered by Matrix"
|
||||
description.fr = "Serveur de chat simple, rapide et fiable alimenté par Matrix"
|
||||
|
||||
version = "0.6.0~ynh5"
|
||||
version = "0.6.0~ynh6"
|
||||
|
||||
maintainers = ["eric_G"]
|
||||
maintainers = [ "eric_G" ]
|
||||
|
||||
[upstream]
|
||||
license = "Apache-2.0"
|
||||
|
@ -18,7 +18,7 @@ fund = "https://liberapay.com/timokoesters/"
|
|||
|
||||
[integration]
|
||||
yunohost = ">= 11.2"
|
||||
architectures = ["arm64", "amd64", "armhf"]
|
||||
architectures = [ "arm64", "amd64", "armhf" ]
|
||||
multi_instance = false
|
||||
|
||||
ldap = "not_relevant"
|
||||
|
@ -36,6 +36,8 @@ ram.runtime = "50M"
|
|||
[install.init_main_permission]
|
||||
type = "group"
|
||||
default = "visitors"
|
||||
help.en = "If you want to be able to federate with other servers, you should let the default choice, visitors"
|
||||
help.fr = "Si vous souhaitez pouvoir fédérer votre serveur avec d'autres, vous devez laisser le choix par défaut, visiteurs"
|
||||
|
||||
[install.server_name]
|
||||
ask.en = "Select the display name for your Conduit server"
|
||||
|
@ -67,27 +69,27 @@ ram.runtime = "50M"
|
|||
armhf.url = "https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/build-output/linux_arm_v7/conduit?job=docker:master"
|
||||
armhf.sha256 = "595534a8eb19496f7ac39130e62a29645fc04b001faad72032144ab97467d394"
|
||||
|
||||
[resources.system_user]
|
||||
[resources.system_user]
|
||||
|
||||
[resources.install_dir]
|
||||
[resources.install_dir]
|
||||
|
||||
[resources.permissions]
|
||||
main.url = "/"
|
||||
main.show_tile = false
|
||||
[resources.permissions]
|
||||
main.url = "/"
|
||||
main.show_tile = false
|
||||
|
||||
server_api.url = "__DOMAIN__/_matrix"
|
||||
server_api.label = "Server access for client apps."
|
||||
server_api.show_tile = false
|
||||
server_api.allowed = "visitors"
|
||||
server_api.auth_header = false
|
||||
server_api.protected = true
|
||||
server_api.url = "__DOMAIN__/_matrix"
|
||||
server_api.label = "Server access for client apps."
|
||||
server_api.show_tile = false
|
||||
server_api.allowed = "visitors"
|
||||
server_api.auth_header = false
|
||||
server_api.protected = true
|
||||
|
||||
server_client_infos.url = "__SERVER_NAME__/.well-known/matrix"
|
||||
server_client_infos.label = "Server info for federation. (well-known)"
|
||||
server_client_infos.show_tile = false
|
||||
server_client_infos.allowed = "visitors"
|
||||
server_client_infos.auth_header = false
|
||||
server_client_infos.protected = true
|
||||
server_client_infos.url = "__SERVER_NAME__/.well-known/matrix"
|
||||
server_client_infos.label = "Server info for federation. (well-known)"
|
||||
server_client_infos.show_tile = false
|
||||
server_client_infos.allowed = "visitors"
|
||||
server_client_infos.auth_header = false
|
||||
server_client_infos.protected = true
|
||||
|
||||
[resources.ports]
|
||||
main.default = 6167
|
||||
[resources.ports]
|
||||
main.default = 6167
|
||||
|
|
Loading…
Add table
Reference in a new issue