Fix comeback bonus

This commit is contained in:
Joey Yakimowich-Payne 2026-01-19 13:10:07 -07:00
commit 99977bc8e6
No known key found for this signature in database
GPG key ID: DDF6AF5B21B407D4
4 changed files with 44 additions and 3 deletions

View file

@ -246,6 +246,7 @@ if [ -n "$TURN_IP" ]; then
# Coturn TURN Server Configuration
# Generated by setup-prod.sh on $(date)
listening-ip=0.0.0.0
listening-port=3478
tls-listening-port=5349
external-ip=${TURN_IP}
@ -342,9 +343,18 @@ echo -e " ${AUTH_DOMAIN} → ${BLUE}<your-server-ip>${NC}"
echo ""
if [ -n "$TURN_IP" ]; then
echo " 2. Open firewall ports for TURN server:"
echo ""
echo " For Ubuntu/ufw:"
echo -e " ${YELLOW}sudo ufw allow 3478/tcp && sudo ufw allow 3478/udp${NC}"
echo -e " ${YELLOW}sudo ufw allow 5349/tcp && sudo ufw allow 49152:65535/udp${NC}"
echo ""
echo " For Oracle Cloud (firewalld):"
echo -e " ${YELLOW}sudo firewall-cmd --permanent --add-port=3478/tcp${NC}"
echo -e " ${YELLOW}sudo firewall-cmd --permanent --add-port=3478/udp${NC}"
echo -e " ${YELLOW}sudo firewall-cmd --permanent --add-port=5349/tcp${NC}"
echo -e " ${YELLOW}sudo firewall-cmd --permanent --add-port=49152-65535/udp${NC}"
echo -e " ${YELLOW}sudo firewall-cmd --reload${NC}"
echo ""
echo " 3. Start the TURN server:"
echo -e " ${YELLOW}docker compose -f docker-compose.turn.yml up -d${NC}"
echo ""