From 7a13f62fef542c08fd6fac884481e3b5a91317bd Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 20 Sep 2020 02:10:56 +0200 Subject: [PATCH] Port shouldn't be opened on the firewall ... it supposed to be only there for reverse proxying --- scripts/install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index a60559b..7db37be 100755 --- a/scripts/install +++ b/scripts/install @@ -67,14 +67,13 @@ ynh_app_setting_set $app is_public $is_public #================================================= # STANDARD MODIFICATIONS #================================================= -# FIND AND OPEN A PORT +# FIND AN AVAILABLE PORT #================================================= # Find a free port port=$(ynh_find_port 8083) # Open this port ynh_script_progression --message="Opening port $port..." --weight=5 -yunohost firewall allow --no-upnp TCP $port 2>&1 ynh_app_setting_set $app port $port #=================================================