1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
Galène package for YunoHost
Find a file
Éric Gaspar 5a2883014f
Testing (#17)
* Fix some issues with Coturn settings and rights
2021-01-25 18:06:42 +01:00
conf Testing (#17) 2021-01-25 18:06:42 +01:00
scripts Testing (#17) 2021-01-25 18:06:42 +01:00
sources Testing (#17) 2021-01-25 18:06:42 +01:00
check_process Upgrade to version 0.2 (#8) 2021-01-10 14:40:27 +01:00
France_in_XXI_Century._School.jpg Upgrade to version 0.2 (#8) 2021-01-10 14:40:27 +01:00
issue_template.md First commit 2021-01-09 12:29:28 +01:00
LICENSE First commit 2021-01-09 12:29:28 +01:00
manifest.json Testing (#17) 2021-01-25 18:06:42 +01:00
pull_request_template.md Testing (#17) 2021-01-25 18:06:42 +01:00
README.md Testing (#17) 2021-01-25 18:06:42 +01:00
README_fr.md Testing (#17) 2021-01-25 18:06:42 +01:00

Galène for YunoHost

Integration level
Install Galène with YunoHost

Lire ce readme en français.

This package allows you to install Galène quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult the guide to learn how to install it.

Overview

Galène is a videoconferencing server that is easy to deploy (just copy a few files and run the binary) and that requires moderate server resources. It was originally designed for lectures and conferences (where a single speaker streams audio and video to hundreds or thousands of users), but later evolved to be useful for student practicals (where users are divided into many small groups), and meetings (where a few dozen users interact with each other).

Shipped version: 0.2

Screenshots

Demo

Configuration

TURN server

For VoIP and video conferencing a TURN server is also installed and configured. The TURN server listens on two UDP and TCP ports. You can get them with these commands:

sudo yunohost app setting galene turnserver_tls_port
sudo yunohost app setting galene turnserver_alt_tls_port

The TURN server will also choose a port dynamically when a new call starts. The range is between 49153 - 49193.

For security reason the ports range (49153 - 49193) isn't automatically open by default. If you want to use Galène server for VoIP or conferencing you will need to open this port range manually. To do this, just run this command:

sudo yunohost firewall allow Both 49153:49193

You might also need to open these ports (if it is not automatically done) on your ISP box.

To prevent the situation when the server is behind a NAT, the public IP is written in the TURN server config. By this the TURN server can send its real public IP to the client. For more information see the Coturn example config file. So if your IP changes, you could run the script /opt/yunohost/galene/Coturn_config_rotate.sh to update your config.

If you have a dynamic IP address, you also might need to update this config automatically. To do that just edit a file named /etc/cron.d/coturn_config_rotate and add the following content.

*/15 * * * * root bash /opt/yunohost/galene/Coturn_config_rotate.sh;

To check if Galène can connect to the TURN server, connect to Galène as operator and type /relay-test in the chat box; if the TURN server is properly configured, you should see a message saying that the relay test has been successful.

Documentation

YunoHost specific features

Multi-user support

  • Are LDAP and HTTP auth supported? No
  • Can the app be used by multiple users? Yes

Supported architectures

  • x86-64 - Build Status
  • ARMv8-A - Build Status

Limitations

  • Any known limitations.

Additional information

  • Other info you would like to add about this app.

Developer info

Please send your pull request to the testing branch.

To try the testing branch, please proceed like that.

sudo yunohost app install https://github.com/YunoHost-Apps/galene_ynh/tree/testing --debug
or
sudo yunohost app upgrade galene -u https://github.com/YunoHost-Apps/galene_ynh/tree/testing --debug