Update 2 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 22s

This commit is contained in:
Your Name
2025-09-01 14:28:10 +12:00
parent c8ce5f671a
commit 22b3152e77
2 changed files with 18 additions and 12 deletions

View File

@@ -31,5 +31,4 @@ PUBLIC_IP=
CLOUDFLARE_TUNNEL_TOKEN=
# Optional: Monitoring
ENABLE_MONITORING=false
GRAFANA_PASSWORD=admin

View File

@@ -2,15 +2,22 @@
# shellcheck disable=SC1091
source "${AGENT_PATH}/common.sh"
echo "=== Port Configuration ==="
echo "Web Interface: ${HOST_PORT:-8080}"
echo "RTSP: 8554"
echo "HLS: 8888"
echo "WebRTC: 8889"
echo "MediaMTX API: 9997"
echo "Metrics: 9998"
echo "${HOST_PORT:-8880}"
echo "8554"
echo "8888"
echo "8889"
echo "9997"
echo "9998"
echo "9090"
echo "3000"
if [[ "${ENABLE_MONITORING}" == "true" ]]; then
echo "Prometheus: 9090"
echo "Grafana: 3000"
fi
# Port Requirements:
# - 8880 - Web interface (changed from 8080)
# - 8554 - RTSP server
# - 8888 - HLS streaming
# - 8889 - WebRTC signaling
# - 9997 - MediaMTX API
# - 9998 - Metrics
# - 9090 - Prometheus (optional)
# - 3000 - Grafana (optional)