1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galene_ynh.git synced 2024-09-03 18:36:31 +02:00
galene_ynh/README.md

91 lines
4.5 KiB
Markdown
Raw Normal View History

2021-05-22 18:47:51 +02:00
<!--
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
It shall NOT be edited by hand.
-->
2021-01-09 12:21:30 +01:00
2021-08-11 18:15:17 +02:00
# Galène for YunoHost
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
[![Integration level](https://dash.yunohost.org/integration/galene.svg)](https://dash.yunohost.org/appci/app/galene) ![](https://ci-apps.yunohost.org/ci/badges/galene.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/galene.maintain.svg)
2021-08-11 18:15:17 +02:00
[![Install Galène with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=galene)
2021-01-09 12:21:30 +01:00
2021-05-22 18:47:51 +02:00
*[Lire ce readme en français.](./README_fr.md)*
2021-01-09 12:21:30 +01:00
2021-08-11 18:15:17 +02:00
> *This package allows you to install Galène quickly and simply on a YunoHost server.
2021-05-22 18:47:51 +02:00
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
2021-01-09 12:21:30 +01:00
2021-05-22 18:47:51 +02:00
## Overview
2021-01-09 12:21:30 +01:00
2021-08-29 10:38:32 +02:00
Galène (or Galene) is a videoconference server (an “SFU”) that is easy to deploy 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 dozen users interact with each other).
2021-01-09 12:21:30 +01:00
2021-09-04 14:41:16 +02:00
**Shipped version:** 0.4.0~ynh1
2021-05-22 18:47:51 +02:00
**Demo:** https://galene.org:8443/
2021-01-09 12:21:30 +01:00
2021-05-22 18:47:51 +02:00
## Screenshots
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
![](./doc/screenshots/screenshot.png)
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
## Disclaimers / important information
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
### Accessing groups
2021-01-09 12:21:30 +01:00
2021-06-02 09:04:54 +02:00
*Galène* meeting rooms are called "groups". Any group is accessible at `https://domain.tld/group/GroupName`, by typing its name in the home page search field, or by selecting it in the public list (if the group is configured as publicly visible, see below).
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
#### Creating and configuring groups
2021-06-02 09:04:54 +02:00
Groups are defined by JSON files located in the *Galène* folder (`/opt/yunohost/galene/groups`). Each group is represented by a `GroupName.json` file.
2021-06-02 09:36:42 +02:00
To create a new group, you need to create a `GroupNameExample.json` file (you can also make subfolder groups, and the groups will be accessible with `https://domain.tld/group/subfolder/GroupName`). Various configuration options are available (see https://github.com/YunoHost-Apps/galene_ynh/wiki/Configuration-file).
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
*NB: spaces are supported in group file names.*
### Configuring your TURN server
#### Using *Galène*'s TURN server
Galène comes with a built-in TURN server that should work out-of-the-box.
- If your server is behind NAT, allow incoming traffic to TCP port `8443` (or whatever is configured with the `-http` option in `/etc/systemd/system/galene.service`) and TCP/UDP port `1194` (or whatever is configured with the `-turn` option in `/etc/systemd/system/galene.service`)
#### Using your own TURN server
- Install [coturn_ynh](https://github.com/YunoHost-Apps/coturn_ynh).
- Add `/opt/yunohost/galene/data/ice-servers.json` with these lines and change `turn.example.org` and `secret`
```
[
{
"urls": [
2021-06-02 09:04:54 +02:00
"turn:turn.example.org:5349",
"turn:turn.example.org:5349?transport=tcp"
2021-05-29 15:21:26 +02:00
],
"username": "galene",
"credential": "secret"
}
]
```
2021-06-02 09:36:42 +02:00
- set `/etc/systemd/system/galene.service` `-turn` option to `-turn auto` (or `-turn ""` to disable the built-in TURN server).
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
To check if the TURN server is up and running, 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.
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
### Server Statistics page
2021-01-09 12:21:30 +01:00
2021-05-29 15:21:26 +02:00
Some statistics are available under `/opt/yunohost/galene/stats.json`, with a human-readable version at `domain.ltd/stats.html`. This is only available to the server administrator.
2021-01-09 12:21:30 +01:00
2021-05-22 18:47:51 +02:00
## Documentation and resources
2021-01-09 12:21:30 +01:00
2021-05-22 18:47:51 +02:00
* Official app website: https://galene.org/
* Official user documentation: https://yunohost.org/en/app_galene
* Official admin documentation: https://galene.org/
2021-06-02 09:04:54 +02:00
* Upstream app code repository: https://github.com/jech/galene
2021-05-22 18:47:51 +02:00
* YunoHost documentation for this app: https://yunohost.org/app_galene
* Report a bug: https://github.com/YunoHost-Apps/galene_ynh/issues
2021-01-09 12:21:30 +01:00
## Developer info
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/galene_ynh/tree/testing).
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
```
2021-05-22 18:47:51 +02:00
**More info regarding app packaging:** https://yunohost.org/packaging_apps