Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/talk_signaling.sh')
-rw-r--r--apps/talk_signaling.sh13
1 files changed, 11 insertions, 2 deletions
diff --git a/apps/talk_signaling.sh b/apps/talk_signaling.sh
index 2413c62e..dccc1c78 100644
--- a/apps/talk_signaling.sh
+++ b/apps/talk_signaling.sh
@@ -115,7 +115,7 @@ ${NONO_PORTS[*]}"
if yesno_box_no "Do you want to change port?"
then
- while true
+ while :
do
# Ask for port
TURN_PORT=$(input_box "Please enter the port you will use for Nextcloud Talk")
@@ -221,7 +221,16 @@ then
exit 1
fi
-SUBDOMAIN=$(input_box "Talk Signaling Server subdomain e.g: talk.yourdomain.com\n\nNOTE: This domain must be different than your Nextcloud domain. They can however be hosted on the same server, but would require seperate DNS entries.")
+# Ask for the domain for Talk
+while :
+do
+ # Talk Proxy URL
+ SUBDOMAIN=$(input_box "Talk Signaling Server subdomain e.g: talk.yourdomain.com\n\nNOTE: This domain must be different than your Nextcloud domain. They can however be hosted on the same server, but would require seperate DNS entries.")
+ if yesno_box_yes "Is this correct? $SUBDOMAIN"
+ then
+ break
+ fi
+done
# curl the lib another time to get the correct https_conf
# shellcheck source=lib.sh