Files
dropshell-templates/squashkiwi-streaming/ports.sh
Your Name 11ddc264eb
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 59s
docs: Add 42 files
2025-09-01 14:04:58 +12:00

16 lines
355 B
Bash
Executable File

#!/bin/bash
# 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"
if [[ "${ENABLE_MONITORING}" == "true" ]]; then
echo "Prometheus: 9090"
echo "Grafana: 3000"
fi