1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/owncast_ynh.git synced 2024-09-03 19:56:20 +02:00

Merge pull request #41 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2023-07-13 06:34:46 +02:00 committed by GitHub
commit 025cc93810
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 14 additions and 18 deletions

View file

@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Owncast is an open source, self-hosted, decentralized, single user live streaming and chat server for running your own live streams similar in style to the large mainstream options. It offers complete ownership over your content, interface, moderation and audience.
**Shipped version:** 0.1.0~ynh1
**Shipped version:** 0.1.0~ynh2
**Demo:** https://watch.owncast.online/

View file

@ -18,7 +18,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Owncast est un serveur de diffusion en direct et de chat open source, auto-hébergé, décentralisé et à utilisateur unique pour exécuter vos propres diffusions en direct dans un style similaire aux grandes options grand public. Il offre une propriété complète sur votre contenu, votre interface, votre modération et votre audience.
**Version incluse :** 0.1.0~ynh1
**Version incluse :** 0.1.0~ynh2
**Démo :** https://watch.owncast.online/

View file

@ -1,6 +1,7 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
@ -10,7 +11,6 @@ location __PATH__/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_pass http://127.0.0.1:__PORT__;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;

View file

@ -1,7 +1,3 @@
## Configuration
You can configure Owncast in the admin page: `https://__DOMAIN__/admin` with `admin` and `abc123` as credential. Don't forget to change the stream key.
## Streaming app
OBS can be used as streaming video app: https://obsproject.com/

View file

@ -1,7 +1,3 @@
## Configuration
Vous pouvez configurer Owncast dans la page d'administration : `https://__DOMAIN__/admin` avec `admin` et `abc123` comme identifiant. N'oubliez pas de changer la clé de flux (Stream Key).
## Application de diffusion en continu
OBS peut être utilisé comme application de streaming vidéo : https://obsproject.com/

View file

@ -1 +1,2 @@
You can configure Owncast in the admin page: `https://__DOMAIN__/admin` with `admin` and `abc123` as credential. Don't forget to change the stream key.
You can configure Owncast in the admin page: `https://__DOMAIN__/admin` with `admin` and `abc123` as credential.
Don't forget to change the stream key.

View file

@ -1 +1,2 @@
Vous pouvez configurer Owncast dans la page d'administration : `https://__DOMAIN__/admin` avec `admin` et `abc123` comme identifiant. N'oubliez pas de changer la clé de flux (Stream Key).
Vous pouvez configurer Owncast dans la page d'administration : `https://__DOMAIN__/admin` avec `admin` et `abc123` comme identifiant.
N'oubliez pas de changer la clé de flux (Stream Key).

View file

@ -5,7 +5,7 @@ name = "Owncast"
description.en = "Self-hosted live video and web chat server for use with existing broadcasting software"
description.fr = "Serveur de vidéo en direct et de chat Web auto-hébergé à utiliser avec un logiciel de diffusion"
version = "0.1.0~ynh1"
version = "0.1.0~ynh2"
maintainers = ["eric_G"]
@ -17,7 +17,7 @@ admindoc = "https://owncast.online/docs/"
code = "https://github.com/owncast/owncast"
[integration]
yunohost = ">= 11.1.19"
yunohost = ">= 11.1.21"
architectures = ["amd64", "armhf", "arm64"]
multi_instance = false
ldap = false

View file

@ -22,7 +22,7 @@ upgrade_type=$(ynh_check_app_version_changed)
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
@ -33,7 +33,7 @@ then
ynh_script_progression --message="Upgrading source files..." --weight=5
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
ynh_setup_source --dest_dir="$install_dir" --keep="data" --full_replace=1
fi
chmod -R o-rwx "$install_dir"

View file

@ -4,4 +4,6 @@ test_format = 1.0
# ------------
# Tests to run
# ------------
# ------------
test_upgrade_from.5233d1027c.name = "Upgrade from 0.0.13"