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:
parent
ca7f430001
commit
474f70e164
4 changed files with 2 additions and 24 deletions
|
@ -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_tls_port > /dev/null 2>&1
|
||||||
yunohost firewall allow Both $turnserver_alt_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
|
# Store opened ports
|
||||||
ynh_app_setting_set $app synapse_port $port
|
ynh_app_setting_set $app synapse_port $port
|
||||||
ynh_app_setting_set $app synapse_tls_port $synapse_tls_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.
|
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"
|
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"
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,6 @@ closeport() {
|
||||||
closeport $synapse_tls_port
|
closeport $synapse_tls_port
|
||||||
closeport $turnserver_tls_port
|
closeport $turnserver_tls_port
|
||||||
closeport $turnserver_alt_tls_port
|
closeport $turnserver_alt_tls_port
|
||||||
closeport '49152:49192'
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SSOWAT
|
# SETUP SSOWAT
|
||||||
|
|
|
@ -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_tls_port > /dev/null 2>&1
|
||||||
yunohost firewall allow Both $turnserver_alt_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
|
# 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.
|
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"
|
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"
|
||||||
|
|
||||||
|
|
|
@ -204,15 +204,6 @@ test -e /etc/matrix-$app/dh.pem || \
|
||||||
cp /etc/yunohost/certs/$domain/dh.pem /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
|
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
|
# STANDARD UPGRADE STEPS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Add table
Reference in a new issue