mirror of
https://github.com/YunoHost-Apps/conduit_ynh.git
synced 2024-09-03 18:16:30 +02:00
Merge branch 'testing' into registration
This commit is contained in:
commit
edf3e127cd
5 changed files with 17 additions and 3 deletions
|
@ -42,3 +42,17 @@ trusted_servers = ["matrix.org"]
|
||||||
|
|
||||||
address = "127.0.0.1" # This makes sure Conduit can only be reached using the reverse proxy
|
address = "127.0.0.1" # This makes sure Conduit can only be reached using the reverse proxy
|
||||||
#address = "0.0.0.0" # If Conduit is running in a container, make sure the reverse proxy (ie. Traefik) can reach it.
|
#address = "0.0.0.0" # If Conduit is running in a container, make sure the reverse proxy (ie. Traefik) can reach it.
|
||||||
|
|
||||||
|
|
||||||
|
# Refer to your Coturn settings.
|
||||||
|
# `your.turn.url` has to match the REALM setting of your Coturn as well as `transport`.
|
||||||
|
#turn_uris = ["turn:your.turn.url?transport=udp", "turn:your.turn.url?transport=tcp"]
|
||||||
|
|
||||||
|
# static-auth-secret of your turnserver
|
||||||
|
#turn_secret = "ADD SECRET HERE"
|
||||||
|
|
||||||
|
# If you have your TURN server configured to use a username and password
|
||||||
|
# you can provide these information too. In this case comment out `turn_secret above`!
|
||||||
|
#turn_username = ""
|
||||||
|
#turn_password = ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 35 KiB |
|
@ -10,7 +10,7 @@ version = "0.6.0~ynh1"
|
||||||
maintainers = [""]
|
maintainers = [""]
|
||||||
|
|
||||||
[upstream]
|
[upstream]
|
||||||
license = "Apache"
|
license = "Apache-2.0"
|
||||||
website = "https://conduit.rs/"
|
website = "https://conduit.rs/"
|
||||||
admindoc = "https://gitlab.com/famedly/conduit"
|
admindoc = "https://gitlab.com/famedly/conduit"
|
||||||
code = "https://gitlab.com/famedly/conduit"
|
code = "https://gitlab.com/famedly/conduit"
|
||||||
|
|
|
@ -17,7 +17,7 @@ ynh_script_progression --message="Restoring the app main directory..." --weight=
|
||||||
|
|
||||||
ynh_restore_file --origin_path="$install_dir"
|
ynh_restore_file --origin_path="$install_dir"
|
||||||
|
|
||||||
chown -R $app:www-data "$install_dir"
|
chown -R $app:root "$install_dir"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE SYSTEM CONFIGURATIONS
|
# RESTORE SYSTEM CONFIGURATIONS
|
||||||
|
|
|
@ -32,7 +32,7 @@ then
|
||||||
ynh_setup_source --dest_dir="$install_dir"
|
ynh_setup_source --dest_dir="$install_dir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
chown -R $app:www-data "$install_dir"
|
chown -R $app:root "$install_dir"
|
||||||
chmod +x -R "$install_dir/conduit"
|
chmod +x -R "$install_dir/conduit"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue