Skip to content

Configure Firewall

xplex listens on port 80 (HTTP) & port 1935 (RTMP). Please make sure the firewall on the host system allows traffic on these ports. Depending on the frontend that the system uses to manage firewall, follow the appropriate section below:

ufw is typically used as frontend for iptables on Debian-based distros.

Terminal window
# check firewall status
sudo ufw status
# allow HTTP traffic
sudo ufw allow http
# allow RTMP traffic
sudo ufw allow 1935

Please follow Ubuntu’s official documentation or, community guide for more advanced help with managing firewall rules.