diff --git a/squashkiwi-streaming/config/service.env b/squashkiwi-streaming/config/service.env index debd130..27d6fd9 100644 --- a/squashkiwi-streaming/config/service.env +++ b/squashkiwi-streaming/config/service.env @@ -31,5 +31,4 @@ PUBLIC_IP= CLOUDFLARE_TUNNEL_TOKEN= # Optional: Monitoring -ENABLE_MONITORING=false GRAFANA_PASSWORD=admin \ No newline at end of file diff --git a/squashkiwi-streaming/ports.sh b/squashkiwi-streaming/ports.sh index 737ce38..2d2b813 100755 --- a/squashkiwi-streaming/ports.sh +++ b/squashkiwi-streaming/ports.sh @@ -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 \ No newline at end of file +# 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)