Skip to content

Commit e0e0d81

Browse files
vorburgernetaskd
authored andcommitted
doc: add tip re. ports to open on firewall to README
1 parent d983578 commit e0e0d81

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,27 @@ The diagram shows a typical deployment in a host running Docker. This project
6767
separates each of the components above into interlinked containers. To this end,
6868
several container images are provided.
6969

70+
### External Ports
71+
72+
The following external ports must be opened on a firweall:
73+
74+
* 80/tcp for Web UI HTTP (really just to redirect, after uncommenting ENABLE_HTTP_REDIRECT=1 in .env)
75+
* 443/tcp for Web UI HTTPS
76+
* 4443/tcp for RTP media over TCP
77+
* 10000/udp for RTP media over UDP
78+
79+
Also 20000-20050/udp for jigasi, in case you choose to deploy that to facilitate SIP acces.
80+
81+
E.g. on a CentOS/Fedora server this would be done like this (without SIP access):
82+
83+
```shell
84+
$ sudo firewall-cmd --permanent --add-port=80/tcp
85+
$ sudo firewall-cmd --permanent --add-port=443/tcp
86+
$ sudo firewall-cmd --permanent --add-port=4443/tcp
87+
$ sudo firewall-cmd --permanent --add-port=10000/udp
88+
$ sudo firewall-cmd --reload
89+
```
90+
7091
### Images
7192

7293
* **base**: Debian stable base image with the [S6 Overlay] for process control and the

0 commit comments

Comments
 (0)