From 7bf0bb37553e69d3310f238f195471fae4de3a42 Mon Sep 17 00:00:00 2001 From: Chris Vogel Date: Fri, 31 May 2024 09:35:29 +0200 Subject: [PATCH] Create ADMIN.md renamed [Admin.md to ADMIN.md](https://yunohost.org/en/packaging_app_doc#specific-notes-for-admins) and added information about registration/login. --- doc/ADMIN.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 doc/ADMIN.md diff --git a/doc/ADMIN.md b/doc/ADMIN.md new file mode 100644 index 0000000..4e1d262 --- /dev/null +++ b/doc/ADMIN.md @@ -0,0 +1,20 @@ +### Login to conduit + +[Integration into the yunohost user database is not ready, yet.](https://github.com/YunoHost-Apps/conduit_ynh/issues/12) You need to **enable registration** in the apps configuration tab and then use a client to register an account. Afterwards you can disable registration again if you do not want allow anybody to register. + +Using the newly created account you should be able to login. + +### Coturn configuration + +To be able to take advantage of audio and video call functionalities, a coturn server is often required. It is possible to [install a coturn server in YunoHost (https://github.com/YunoHost-Apps/coturn-ynh/blob/master/README-en.md). +It is then necessary to fill in the information provided by the coturn server in the file 'conduit.toml' such as: + +``` +turn_uris = ["turns:your.turn.url:5349?transport=udp", "turns:your.turn.url:5349?transport=tcp"] +turn_username = "" +turn_password = "" +``` +If your coturn (not Yunohost's one) don't use TLS, you might need to change a little bit like : +``` +turn_uris = ["turn:your.turn.url:5349?transport=udp", "turn:your.turn.url:5349?transport=tcp"] +``