From e84c685d62ce90a85787e66b0d3921916d026c52 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 17 Jul 2023 18:03:34 +0200 Subject: [PATCH] [mirotalksfu] - update docs --- docs/self-hosting.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/self-hosting.md b/docs/self-hosting.md index 9cfe841d..9d37f49b 100644 --- a/docs/self-hosting.md +++ b/docs/self-hosting.md @@ -64,6 +64,19 @@ Set the `inbound rules` if you have the Firewall enabled | 40000-40100 | TCP | 0.0.0.0/0 | RTC port ranges tcp | | 40000-40100 | UDP | 0.0.0.0/0 | RTC port ranges udp | +```bash +# Check the firewall Status: (active/inactive) +ufw status +# If active then allow traffic +ufw allow 3010/tcp +ufw allow 40000:40100/tcp +ufw allow 40000:40100/udp +# ssh, http, https, nginx... +ufw allow 22/tcp +ufw allow 80/tcp +ufw allow 443/tcp +``` + --- ```bash