1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00

Don't open the port range in scripts

This commit is contained in:
Josué Tille 2018-06-20 19:23:33 +02:00 committed by Josue-T
parent ca7f430001
commit 474f70e164
4 changed files with 2 additions and 24 deletions

View file

@ -77,12 +77,6 @@ yunohost firewall allow TCP $synapse_tls_port > /dev/null 2>&1
yunohost firewall allow Both $turnserver_tls_port > /dev/null 2>&1
yunohost firewall allow Both $turnserver_alt_tls_port > /dev/null 2>&1
# Open the range 49152-49192 only if it as not been open by an other instance
if ! yunohost firewall list | grep -q "\- 49152:49192$"
then
yunohost firewall allow Both 49152:49192 > /dev/null 2>&1
fi
# Store opened ports
ynh_app_setting_set $app synapse_port $port
ynh_app_setting_set $app synapse_tls_port $synapse_tls_port
@ -334,7 +328,7 @@ _matrix._tcp.$domain. 3600 IN SRV 10 0 $synapse_tls_port $domain.
You also need to open the TCP port $synapse_tls_port on your ISP box if it's not automatically done.
Your synapse server also implements a turnserver (for VoIP), to have this fully functional open the TCP and UDP port $turnserver_tls_port, $turnserver_alt_tls_port and the range 49152 - 49192 (if it's not automatically done).
Your synapse server also implements a turnserver (for VoIP), to have this fully functional open the TCP and UDP port $turnserver_tls_port, $turnserver_alt_tls_port and the range 49153 - 49193.
If you're facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/synapse_ynh"

View file

@ -58,7 +58,6 @@ closeport() {
closeport $synapse_tls_port
closeport $turnserver_tls_port
closeport $turnserver_alt_tls_port
closeport '49152:49192'
#=================================================
# SETUP SSOWAT

View file

@ -128,12 +128,6 @@ yunohost firewall allow TCP $synapse_tls_port > /dev/null 2>&1
yunohost firewall allow Both $turnserver_tls_port > /dev/null 2>&1
yunohost firewall allow Both $turnserver_alt_tls_port > /dev/null 2>&1
# Open the range 49152-49192 only if it as not been open by an other instance
if ! yunohost firewall list | grep -q "\- 49152:49192$"
then
yunohost firewall allow Both 49152:49192 > /dev/null 2>&1
fi
#=================================================
# SETUP SSOWAT
#=================================================
@ -212,7 +206,7 @@ _matrix._tcp.$domain. 3600 IN SRV 10 0 $synapse_tls_port $domain.
You also need to open the TCP port $synapse_tls_port on your ISP box if it's not automatically done.
Your synapse server also implements a turnserver (for VoIP), to have this fully functional open the TCP and UDP port $turnserver_tls_port, $turnserver_alt_tls_port and the range 49152 - 49192 (if it's not automatically done).
Your synapse server also implements a turnserver (for VoIP), to have this fully functional open the TCP and UDP port $turnserver_tls_port, $turnserver_alt_tls_port and the range 49153 - 49193 (if it's not automatically done).
If you're facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/synapse_ynh"

View file

@ -204,15 +204,6 @@ test -e /etc/matrix-$app/dh.pem || \
cp /etc/yunohost/certs/$domain/dh.pem /etc/matrix-$app/dh.pem || \
openssl dhparam -out /etc/matrix-$app/dh.pem 2048 > /dev/null
#=================================================
# MIGRATION 4 : FIX TURNSERVER CONFIG
#=================================================
if ! yunohost firewall list | grep -q "\- 49152:49192$"
then
yunohost firewall allow Both 49152:49192 > /dev/null 2>&1
fi
#=================================================
# STANDARD UPGRADE STEPS
#=================================================