File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,27 @@ The diagram shows a typical deployment in a host running Docker. This project
6767separates each of the components above into interlinked containers. To this end,
6868several 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
You can’t perform that action at this time.
0 commit comments