From 4e922c13aa459ce280c75a98adb432c3d96463b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Tron=C3=AD=C4=8Dek?= Date: Mon, 8 Feb 2021 10:55:27 +0100 Subject: [PATCH] Fix the incorrect placement of UDP and TCP --- turnserver.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/turnserver.md b/turnserver.md index b310273..18b4815 100644 --- a/turnserver.md +++ b/turnserver.md @@ -42,8 +42,8 @@ Next, we are going to open up some ports... just in case they are blocked by def ``` sudo ufw allow 3478/tcp # The default coturn TCP port sudo ufw allow 3478/udp # The default coturn UDP port -sudo ufw allow 443/tcp # The HTTPS UDP port -sudo ufw allow 443/udp # The HTTPS TCP port +sudo ufw allow 443/tcp # The HTTPS TCP port +sudo ufw allow 443/udp # The HTTPS UDP port sudo ufw allow 49152:65535/tcp sudo ufw allow 49152:65535/udp ```